Skip to content

Instantly share code, notes, and snippets.

@agusmakmun
Created January 10, 2015 09:55
Show Gist options
  • Save agusmakmun/aac819dadb8df0187953 to your computer and use it in GitHub Desktop.
Save agusmakmun/aac819dadb8df0187953 to your computer and use it in GitHub Desktop.
Django Instalation
Documentation: https://docs.djangoproject.com/en/1.6/intro/tutorial01/
$ Install Python
$ Install Django
$ python -c "import django; print(django.get_version())"
$ django-admin.py startproject mysite
$ python manage.py runserver
/*--- Check: http://127.0.0.1:8000/ ---*/
$ django-admin.py startapp myapp
$ python manage.py createsuperuser --username=joe --email=joe@example.com
/*--- http://127.0.0.1:8000/admin/ --*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment