diff --git a/Gemfile b/Gemfile index a01b799..2a2bf49 100644 --- a/Gemfile +++ b/Gemfile @@ -8,3 +8,4 @@ gem 'sinatra' gem 'pusher' gem 'puma' +gem 'foreman' diff --git a/Gemfile.lock b/Gemfile.lock index daa2978..4371f8e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,6 +2,8 @@ GEM remote: https://rubygems.org/ specs: dotenv (2.0.1) + foreman (0.78.0) + thor (~> 0.19.1) httpclient (2.6.0.1) json (1.8.2) multi_json (1.11.0) @@ -19,6 +21,7 @@ GEM rack (~> 1.4) rack-protection (~> 1.4) tilt (>= 1.3, < 3) + thor (0.19.1) tilt (1.4.1) PLATFORMS @@ -26,6 +29,7 @@ PLATFORMS DEPENDENCIES dotenv + foreman json puma pusher diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..76110bf --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: bundle exec puma -t 1:1 -w 1