Skip to content

Commit

Permalink
add Procfile and executable run script
Browse files Browse the repository at this point in the history
  • Loading branch information
Curly-Mo committed Sep 13, 2016
1 parent 9634cb2 commit b6ae0bc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ gem "sinatra"
gem "sinatra-contrib"

gem "json"
gem "rack"

group :test, :development do
gem "rack"
gem "rspec"
gem 'coveralls', require: false
gem "extlib_lite"
Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ GEM
addressable (~> 2.3.8)
literate_randomizer (0.4.0)
multi_json (1.12.1)
puma (3.6.0)
rack (1.6.4)
rack-protection (1.5.3)
rack
Expand Down Expand Up @@ -66,6 +67,7 @@ DEPENDENCIES
json
json-schema
literate_randomizer
puma
rack
rspec
sinatra
Expand Down
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bundle exec rackup config.ru -s Puma -p $PORT
2 changes: 2 additions & 0 deletions run
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
PORT=8000
bundle exec rackup config.ru -s Puma -p $PORT

0 comments on commit b6ae0bc

Please sign in to comment.