When I ssh into my box and try to run rails console I get errors but when I type export RAILS_ENV=production then run rails console it works. How do I get my environment to stay in production as the environment?
Thanks,
Q
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
You can add
to
~/.bashrc
so that theRAILS_ENV
variable is set toproduction
globally on login. Make sure you log out and log back in so the changes take effect.