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.git
Install the requirements:
pip install -r requirements.txt
Apply the migrations:
python manage.py makemigrations
python manage.py migrate
Create a user (superuser):
python manage.py createsuperuser
Finally, run the development server:
python manage.py runserver
To run the tests
python manage.py test
The API endpoints will be available at 127.0.0.1:8000.