Skip to content

Instantly share code, notes, and snippets.

@pawl
Created January 23, 2020 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pawl/773b2a1bf75474949a15e88ebbba0348 to your computer and use it in GitHub Desktop.
Save pawl/773b2a1bf75474949a15e88ebbba0348 to your computer and use it in GitHub Desktop.
starting a new django project
cd ~
mkdir mysite
virtualenv .venv -p `which python3`
source .venv/bin/activate
pip install django
django-admin startproject mysite
cd mysite
python manage.py startapp myapp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment