Add django rest framework and basic plant model

- Adds django rest framework to requirements
- Adds basic plant model with id and name fields
- Adds CRUD endpoints to interact with plant objects
This commit is contained in:
Dana Lambert 2021-10-07 08:59:57 +13:00
parent aedd224a63
commit bb307d34d2
12 changed files with 68 additions and 2 deletions

3
backend/.gitignore vendored
View file

@ -1,2 +1,3 @@
*.pyc
*.sqlite3
*.sqlite3
__pycache__