Django GraphQL backend for ReactTracks app
This is a very simple project called ReactTracks. The backend stack is Python/Django/SQLite/GraphQL/Graphene. The frontend for this project is reacttracks-graphql-apollo.
Auth:
- Registration
- Login
- Signout
Tracks:
- Create Track
- Update Track
- Delete Track
- Track Information
- Like Track
- Play Track
Profile:
- User Information
- Created Tracks
- Liked Tracks
Install Dependencies (in same folder as Pipfile):
pipenv install
DB Settings:
- Add your DB details to settings.py
DB Migrations:
python manage.py migrate
Start server:
python manage.py runserver
- unit tests
- integration tests