Created
January 10, 2015 09:55
-
-
Save agusmakmun/aac819dadb8df0187953 to your computer and use it in GitHub Desktop.
Django Instalation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 protected] | |
/*--- 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