This is a Django Rest API project for movie collection.
First, clone the repository to your local machine:
git clone https://github.com/LunaticProgrammer/movie-crud-drf.gitInstall the requirements:
pip install -r requirements.txtApply the migrations:
python manage.py makemigrations
python manage.py migrateCreate a user (superuser):
python manage.py createsuperuserFinally, run the development server:
python manage.py runserverTo run the tests
python manage.py testThe API endpoints will be available at 127.0.0.1:8000.