Commit d2554909 by e0d

Adding a new env to handle escalating privileges to run db migrations.

parent 646e2bd4
from .aws import *
import os
USER = os.environ.get('DB_MIGRATION_USER', 'root')
PASSWORD = os.environ.get('DB_MIGRATION_PASS', None)
DATABASES['default']['USER'] = USER
DATABASES['default']['PASSWORD'] = PASSWORD
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment