Skip to content

Commit

Permalink
made production env available
Browse files Browse the repository at this point in the history
  • Loading branch information
elankvitko committed Jun 8, 2016
1 parent 898aa02 commit ad3dea6
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ gem 'lodash-rails'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

gem 'rails_12factor', group: :production

gem 'puma'

ruby "2.3.0"

group :development, :test do
# Call 'binding.pry' anywhere in the code to stop execution and get a debugger console
gem 'pry-rails'
Expand Down
11 changes: 11 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ GEM
slop (~> 3.4)
pry-rails (0.3.4)
pry (>= 0.9.10)
puma (3.4.0)
rack (1.6.4)
rack-test (0.6.3)
rack (>= 1.0)
Expand All @@ -170,6 +171,11 @@ GEM
rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.0.3)
loofah (~> 2.0)
rails_12factor (0.0.3)
rails_serve_static_assets
rails_stdout_logging
rails_serve_static_assets (0.0.5)
rails_stdout_logging (0.0.5)
railties (4.2.6)
actionpack (= 4.2.6)
activesupport (= 4.2.6)
Expand Down Expand Up @@ -245,7 +251,9 @@ DEPENDENCIES
omniauth-facebook
pg (~> 0.15)
pry-rails
puma
rails (= 4.2.6)
rails_12factor
react-rails
sass-rails (~> 5.0)
sdoc (~> 0.4.0)
Expand All @@ -254,5 +262,8 @@ DEPENDENCIES
uglifier (>= 1.3.0)
web-console (~> 2.0)

RUBY VERSION
ruby 2.3.0p0

BUNDLED WITH
1.12.5
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: bundle exec puma -t 5:5 -p ${PORT:-3000} -e ${RACK_ENV:-development}

0 comments on commit ad3dea6

Please sign in to comment.