diff --git a/.envrc b/.envrc index 2a6d79d..fcd4686 100644 --- a/.envrc +++ b/.envrc @@ -9,10 +9,10 @@ branch=$(git branch --show-current) # Always treat running from /home/kae/mm as production if [ $(pwd) == /home/kae/mm ]; then export MM_ENV="PRODUCTION" - export MM_DB="mysql+mysqldb://musicmuster:musicmuster@localhost/musicmuster_prod" + export ALCHEMICAL_DATABASE_URI="mysql+mysqldb://musicmuster:musicmuster@localhost/musicmuster_prod" elif on_git_branch master; then export MM_ENV="PRODUCTION" - export MM_DB="mysql+mysqldb://musicmuster:musicmuster@localhost/musicmuster_prod" + export ALCHEMICAL_DATABASE_URI="mysql+mysqldb://musicmuster:musicmuster@localhost/musicmuster_prod" else export MM_ENV="DEVELOPMENT" export ALCHEMICAL_DATABASE_URI="mysql+mysqldb://dev_musicmuster:dev_musicmuster@localhost/dev_musicmuster"