Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 1.41 KB

README.md

File metadata and controls

16 lines (9 loc) · 1.41 KB

IMDB-CLONE

This is a IMDB clone which is developed using Django and Django Rest Framework. IMDb API is a web-based REST API that can be used in a variety of projects by web developers and even developers working on application development who need to use any feature of the IMDb website.

SOME USEFUL COMMANDS:

Creating Django Project: bash django-admin startproject <project_name>

Creating Apps: bash python3 manage.py startapp <app_name>

Running Server: bash python3 manage.py runserver

Making Migration: python3 manage.py migrate

Applying Migration: bash python3 manage.py makemigrations

Creating Admin: python3 manage.py createsuperuser