Skip to content

Instantly share code, notes, and snippets.

@fmartingr
Last active October 6, 2015 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fmartingr/2944424 to your computer and use it in GitHub Desktop.
Save fmartingr/2944424 to your computer and use it in GitHub Desktop.
django initial fixture file with admin user: admin/1234
[
{
"model": "auth.user",
"pk": 1,
"fields": {
"first_name": "John",
"last_name": "Doe",
"username": "admin",
"email": "email@mydevsite.com",
"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