Skip to content

Instantly share code, notes, and snippets.

@aaronromeo
Created June 12, 2014 14:21
Show Gist options
  • Save aaronromeo/3b701a02cbbd139465b6 to your computer and use it in GitHub Desktop.
Save aaronromeo/3b701a02cbbd139465b6 to your computer and use it in GitHub Desktop.
New Django DB Creation
#!/bin/bash
createuser -d -A -P $DB_USER
createdb -U $DB_USER -E utf8 -O $DB_USER $DB_NAME -T template0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment