/LearnDjango

Alex Created this Repo to learn Django :D

Primary LanguagePythonMIT LicenseMIT

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