Template Project for starting up CRUD API with Django Rest Framework
- DO NOT migrate yet
- add additional dependencies as needed
- Re-export requirements.txt as needed
- change
thingsfolder to the app name of your choice - Search through entire code base for
Thing,Thingsandthingsto modify code to use your resourceproject/settings.pyproject/urls.py- App's files
views.pyurls.pyadmin.pyserializers.pypermissions.py
- Update ThingModel with fields you need
- Make sure to update other modules that would be affected by Model customizations. E.g. serializers, tests, etc.
- Rename
project/.env.sampleto.envand update as needed - Run makemigrations and migrate commands
- Optional: Update
api_tester.py