Skip to content

Instantly share code, notes, and snippets.

@queirozsc
Last active April 28, 2020 14:41
Show Gist options
  • Save queirozsc/5ec8042111230cc1859ecb9813966b61 to your computer and use it in GitHub Desktop.
Save queirozsc/5ec8042111230cc1859ecb9813966b61 to your computer and use it in GitHub Desktop.
Django commands
virtualenv venv
source venv/bin/activate
pip install django
django-admin startproject mysite
django-admin startapp polls
pyhton manage.py migrate # applies migrations on database
python manage.py createsuperuser # create a super user in database
./manage.py makemigrations polls # creates migration for polls app
./manage.py sqlmigrate polls 0001 # shows sql command that will be generated by migrate command
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment