chg: added a bit more dev context to the readme file !minor
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
cătălin 2021-01-25 15:11:10 +01:00
commit d97b046cc6
2 changed files with 9 additions and 1 deletions

View file

@ -14,6 +14,7 @@ cp bernini/settings.py-template bernini/settings.py
poetry install
./wrapper mi # migrate
./wrapper r # runserver at localhost:8000
# goto localhost:8000/api
```
#### server email configuration
- open bernini/settings.py and fill these fields
@ -35,8 +36,16 @@ EMAIL_USE_TLS = True
### api
- based on [Django REST framework](https://www.django-rest-framework.org/)
- auth system using and extending django's `contrib.auth`
- admin available at [/](http://localhost:8000/)
- api available at [/api](http://localhost:8000/api)
- documentation available at
- [/docs/openapi](http://localhost:8000/docs/openapi)
- [/docs/swagger](http://localhost:8000/docs/swagger)
- [/docs/redoc](http://localhost:8000/docs/redoc)
### models
- `Product`: self-explanatory -- models a price and a name describing the product
- `SaleOrderLine`: middleman model between the main sale one and a product, needed in order to add quantities to the aforementioned main sale model
- `SaleOrder`: main sale model

View file

@ -4,7 +4,6 @@ from rest_framework import status
from rest_framework.utils import json
from order.models import SaleOrder, SaleOrderLine, Product
from order.serializers import SaleOrderSerializer
class OrderTests(TestCase):