Created
August 15, 2011 07:42
-
-
Save magmax/1145865 to your computer and use it in GitHub Desktop.
Django: Ejecución del servicio básico.
This file contains hidden or 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
$ python manage.py syncdb | |
Creating tables ... | |
Creating table auth_permission | |
Creating table auth_group_permissions | |
Creating table auth_group | |
Creating table auth_user_user_permissions | |
Creating table auth_user_groups | |
Creating table auth_user | |
Creating table auth_message | |
Creating table django_content_type | |
Creating table django_session | |
Creating table django_site | |
You just installed Django's auth system, which means you don't have any superusers defined. | |
Would you like to create one now? (yes/no): yes | |
Username (Leave blank to use 'miguel'): admin | |
E-mail address: admin@example.com | |
Password: | |
Password (again): | |
Superuser created successfully. | |
Installing custom SQL ... | |
Installing indexes ... | |
No fixtures found. | |
$ python manage.py runserver | |
Validating models... | |
0 errors found | |
Django version 1.3, using settings 'myblog.settings' | |
Development server is running at http://127.0.0.1:8000/ | |
Quit the server with CONTROL-C. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment