Last active
October 6, 2015 05:37
-
-
Save fmartingr/2944424 to your computer and use it in GitHub Desktop.
django initial fixture file with admin user: admin/1234
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
[ | |
{ | |
"model": "auth.user", | |
"pk": 1, | |
"fields": { | |
"first_name": "John", | |
"last_name": "Doe", | |
"username": "admin", | |
"email": "[email protected]", | |
"password": "pbkdf2_sha256$10000$VVJjeNI4DX0Z$dI0w6zSkvvFO+B7s9+rxVS0sj6N2Tp/xVny3FokWQis=", | |
"is_superuser": "1", | |
"is_active": "1", | |
"is_staff": "1" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment