Ubuntu 16.04. Used the bootstrap.sh script, no errors.
When I try to edit /opt/redash/.env the file doesn’t get read in by redash after running. This is my current .env (modified for privacy)
export REDASH_LOG_LEVEL="INFO"
export REDASH_REDIS_URL=redis://localhost:6379/0
export REDASH_DATABASE_URL="postgresql:///redash"
export REDASH_COOKIE_SECRET=fsdfds
export REDASH_MAIL_SERVER="smtp.mailgun.org"
export REDASH_MAIL_PORT="25"
export REDASH_MAIL_USE_TLS=false
export REDASH_MAIL_USE_SSL=false # default: False
export REDASH_MAIL_USERNAME="someuser" # default: None
export REDASH_MAIL_PASSWORD="somepassword" # default: None
export REDASH_MAIL_DEFAULT_SENDER="someemail" # Email address to send from
I do a
sudo supervisorctl restart all
to reload the .env file, then a
sudo ./manage.py check_settings
to check settings. The email settings never take.
I’ve also tried going into the current directory, removing the symbolic link and moving the .env file there.