From 503aac530a1830fc899be397315b100b4ff34164 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Sat, 27 Apr 2024 20:38:21 +0100 Subject: [PATCH] Update environment for Alchemical --- .envrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"