Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 563 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 563 Bytes

Getting Started Guide

Create a Django Project

django-admin startproject [project-name]

Run project Server

cd [project-name]
python3 manage.py runserver

Creating a webapp under the Project/Company

python3 manage.py startup [webapp name]

Migrations

Needs to be run to update models and views after they change.

Make migrations

python3 manage.py makemigrations

Show Migrations

python3 manage.py showmigrations

Migrate

python3 manage.py migrate