Created
February 24, 2020 02:05
-
-
Save cgthayer/a933120dbe0ade4880867c5a67310efa to your computer and use it in GitHub Desktop.
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 migrate | |
Operations to perform: | |
Apply all migrations: admin, auth, contenttypes, sessions | |
Running migrations: | |
Applying contenttypes.0001_initial… OK | |
Applying auth.0001_initial… OK | |
Applying admin.0001_initial… OK | |
Applying admin.0002_logentry_remove_auto_add… OK | |
Applying contenttypes.0002_remove_content_type_name… OK | |
Applying auth.0002_alter_permission_name_max_length… OK | |
Applying auth.0003_alter_user_email_max_length… OK | |
Applying auth.0004_alter_user_username_opts… OK | |
Applying auth.0005_alter_user_last_login_null… OK | |
Applying auth.0006_require_contenttypes_0002… OK | |
Applying auth.0007_alter_validators_add_error_messages… OK | |
Applying auth.0008_alter_user_username_max_length… OK | |
Applying sessions.0001_initial… OK | |
$ python manage.py createsuperuser | |
Username (leave blank to use 'thayer'): | |
Email address: thayer@@b2si.com | |
Password: | |
Password (again): | |
Superuser created successfully. | |
$ | |
$ tree | |
. | |
├── db.sqlite3 | |
├── manage.py | |
├── myapp | |
│ ├── admin.py | |
│ ├── apps.py | |
│ ├── __init__.py | |
│ ├── migrations | |
│ │ └── __init__.py | |
│ ├── models.py | |
│ ├── tests.py | |
│ └── views.py | |
└── myproj | |
├── __init__.py | |
├── __pycache__ | |
│ ├── __init__.cpython-36.pyc | |
│ ├── settings.cpython-36.pyc | |
│ ├── urls.cpython-36.pyc | |
│ └── wsgi.cpython-36.pyc | |
├── settings.py | |
├── urls.py | |
└── wsgi.py | |
4 directories, 17 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment