-
Notifications
You must be signed in to change notification settings - Fork 16
/
environment.rb
46 lines (38 loc) · 1.25 KB
/
environment.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
require "sinatra"
# The code below will automatically require all the gems listed in our Gemfile,
# so we don't have to manually require gems a la
#
# require "data_mapper"
# require "dotenv"
#
# See: http://bundler.io/sinatra.html
require "rubygems"
require "bundler/setup"
Bundler.require(:default, Sinatra::Application.environment)
# Bundler.require(:default) will automatically require all global gems and
# Bundler.require(Sinatra::Application.environment) will automatically require
# all environment-specific gems.
#
# See: http://bundler.io/v1.6/groups.html
#
# NOTE: Sinatra::Application.environment is set to the value of ENV['RACK_ENV']
# if ENV['RACK_ENV'] is set. Otherwise, it defaults to :development.
# Load the .env file if it exists
if File.exist?(".env")
Dotenv.load(".env")
end
# Yell at the user (and exit) if DATABASE_URL isn't set
unless ENV.key?("DATABASE_URL")
puts "ENV['DATABASE_URL'] is undefined. Make sure your .env file is correct."
puts "To use the example file env.example, run"
puts ""
puts " rake setup:dotenv"
puts ""
exit 1
end
if ENV.values.include?("fill-me-in")
puts "You need to configure your Amazon Web Services (AWS) account."
puts "See the README for how to do this."
exit 1
end
require "./setup"