- Install dependencies
pip install -r requirements.txt
- Update
ALLOWED_HOSTS
, if using expo go app for Front-end. Opensettings.py
and add IP address toALLOWED_HOSTS
.
ALLOWED_HOSTS = ['localhost', '192.168.1.8']
- Start server
python manage.py runserver 0.0.0.0:8000
- Create separate table for Roles and add FK to memeber table.
- Authentication / Authorization.
- Add tests.