A movie & music review application built around the TMDB & Spotify APIs
Usage | Name | Version |
---|---|---|
Language | Python | 3.11.0 |
Framework | Django | 4.2.2 |
TMDB API | tmdbsimple | 2.9.1 |
CORS Library | django-cors-headers | 3.13.0 |
REST Library | djangorestframework | 3.14.0 |
JWT Library | djangorestframework-simplejwt | 5.2.2 |
- Clone the repo
git clone https://github.com/Zararthustra/marcus_back
- Install dependencies
pip install -r requirements.txt
- Make database migration (in
src
)
python manage.py makemigrations marcus marcus_music
python manage.py migrate
- Run tests (in
src
)
python manage.py test marcus marcus_music --verbosity=2
- Run server (in
src
)
python manage.py runserver 0.0.0.0:8000