Simplified cinema API which shows the information about movies and comments.
movies
/movies/ GET (Optional): param: '?ordering=' values: '(-)release_date' | '(-)comments_count'
get the list of movies/movies/ POST
create movie/movies/<id>/ GET
get movie details/movies/<id>/ PUT
update movie/movies/<id>/ PATCH
edit movie/movies/<id>/ DELETE
delete movie
comments
/movies/<id>/comments/ GET
get the list of movie comments/movies/<id>/comments/ POST
create comment/movies/<id>/comments/<id>/ GET
get comment details/movies/<id>/comments/<id>/ PUT
update comment/movies/<id>/comments/<id>/ PATCH
edit comment/movies/<id>/comments/<id>/ DELETE
delete comment
viertualenv -v python3 venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
python manage.py test