Skip to content

Instantly share code, notes, and snippets.

@spilth
Created April 5, 2018 14:35
Show Gist options
  • Save spilth/116cf41d7436768f6abdc5bcd6ae31a6 to your computer and use it in GitHub Desktop.
Save spilth/116cf41d7436768f6abdc5bcd6ae31a6 to your computer and use it in GitHub Desktop.
Django Cheatsheet

Django Cheatsheet

Install Python

$ brew install pyenv
$ eval "$(pyenv init -)"
$ echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
$ pyenv install --list
$ pyenv install 2.7.14
$ pyenv install 3.6.5
$ pyenv global 2.7.14
$ pip install --upgrade pip

Install Django

$ pip install Django
$ python -m django --version

Create Django Project

$ django-admin startproject mysite
$ cd mysite

Migrate the Database

$ ./manage.py migrate

Start the Development Server

$ ./manage.py runserver

Then visit http://localhost:8000.

Create a Django App

$ ./manage.py startapp polls

Miscellanous/Extra

Install PyCharm

$ brew cask install pycharm

Installing PyScaffold

# For Python 2
$ pip install --upgrade pyscaffold==2.5
# For Python 3
$ pip install --upgrade pyscaffold
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment