AlexZichong / LearnDjango

Alex Created this Repo to learn Django :D

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LearnDjango

Django Cheatsheet

Creating a new project

django-admin startproject projectname

Add an app to a project

python3 manage.py startapp appname

Starting the server

python3 manage.py runserver

Creating migrations

python3 manage.py makemigrations

Migrate the database

python3 manage.py migrate

Creating a Super User for the admin panel

python3 manage.py createsuperuser

Collecting static files into one folder

python3 manage.py collectstatic

About

Alex Created this Repo to learn Django :D

License:MIT License


Languages

Language:Python 70.9%Language:HTML 29.1%