We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d6825c commit 6ea5f18Copy full SHA for 6ea5f18
Gemfile
@@ -1,5 +1,6 @@
1
source 'https://rubygems.org'
2
3
+gem 'thin'
4
gem 'sinatra'
5
gem 'haml'
6
gem 'sass'
Gemfile.lock
@@ -1,6 +1,8 @@
GEM
remote: https://rubygems.org/
specs:
+ daemons (1.1.9)
+ eventmachine (1.0.3)
haml (4.0.2)
7
tilt
8
rack (1.5.2)
@@ -11,6 +13,10 @@ GEM
11
13
rack (~> 1.5, >= 1.5.2)
12
14
rack-protection (~> 1.4)
15
tilt (~> 1.3, >= 1.3.4)
16
+ thin (1.5.1)
17
+ daemons (>= 1.0.9)
18
+ eventmachine (>= 0.12.6)
19
+ rack (>= 1.0.0)
20
tilt (1.4.1)
21
22
PLATFORMS
@@ -20,3 +26,4 @@ DEPENDENCIES
26
haml
27
sass
28
sinatra
29
+ thin
Procfile
@@ -0,0 +1 @@
+web: bundle exec thin start -p $PORT -e RACK_ENV
0 commit comments