From c8b20277cc2ecb3df130031739eba9eb4455a12c Mon Sep 17 00:00:00 2001 From: Matthieu Guillemot Date: Fri, 13 Sep 2013 14:24:08 +0900 Subject: [PATCH] Bluepill load content of .env file --- config/discourse.pill.sample | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/config/discourse.pill.sample b/config/discourse.pill.sample index f062f237ecb..24455d8968e 100644 --- a/config/discourse.pill.sample +++ b/config/discourse.pill.sample @@ -14,9 +14,6 @@ Bluepill.application("discourse", :base_dir => ENV["HOME"] + '/.bluepill') do |a # Running bluepill as root? Use: #Bluepill.application("discourse") do |app| - app.gid = group - app.uid = user - # getting this to work was a nightmare # bundle exec spawns a process totally messing with the demonize option # so we suck the environment out and set it up first @@ -39,6 +36,16 @@ Bluepill.application("discourse", :base_dir => ENV["HOME"] + '/.bluepill') do |a end app.environment ||= {} + + # Load .env file if there is one + if File.exist? "#{rails_root}/.env" + File.read("#{rails_root}/.env").split("\n").each do |l| + kv = l.chomp.split('=',2) + app.environment[kv[0]] = kv[1] + end + end + + # Force RAILS_ENV to the value specified in the environment of the bluepill invocation app.environment['RAILS_ENV'] = rails_env app.gid = group