make upgrading from 1.0 easier

This commit is contained in:
Joshua Arts
2018-07-05 17:25:59 -04:00
parent fd1b550f93
commit e2ad6e7715
12 changed files with 51 additions and 23 deletions

View File

@ -87,6 +87,7 @@ Rails.application.configure do
config.active_record.dump_schema_after_migration = false
# Set the relative url root for deployment to a subdirectory.
config.relative_url_root = "/"
config.relative_url_root = ENV['RELATIVE_URL_ROOT'] if ENV['RELATIVE_URL_ROOT'].present?
if ENV['RELATIVE_URL_ROOT'] != "/"
config.relative_url_root = ENV['RELATIVE_URL_ROOT'] || "/b"
end
end

View File

@ -11,7 +11,7 @@ threads threads_count, threads_count
# Specifies the `port` that Puma will listen on to receive requests, default is 3000.
#
port ENV.fetch("PORT") { 3000 }
port ENV.fetch("PORT") { 80 }
# Specifies the `environment` that Puma will run in.
#