diff --git a/.envrc b/.envrc index d75bbff..b3f198b 100644 --- a/.envrc +++ b/.envrc @@ -5,7 +5,11 @@ export MAIL_SERVER="smtp.fastmail.com" export MAIL_USERNAME="kae@midnighthax.com" export MAIL_USE_TLS=True branch=$(git branch --show-current) -if on_git_branch master; then +# 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" +elif on_git_branch master; then export MM_ENV="PRODUCTION" export MM_DB="mysql+mysqldb://musicmuster:musicmuster@localhost/musicmuster_prod" else