Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.9k views
in Technique[技术] by (71.8m points)

ruby - How to start Rails server with environment variables set?

I have the following command. I insert it on starting the rails server

VARIABLE=development rails s

How do I make this variable start automatically, without having to wright it myself every time?

So I would then just do this

rails s

and it would run automatically with that variable.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Bundle the dotenv-rails gem, then create a .env file with the content:

VARIABLE=development

The gem picks up all variables from the file and sets them in your environment.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...