diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..833b516 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: java $JVM_OPTS -cp target/clojsa-standalone.jar clojure.main -m clojsa.handler/app diff --git a/project.clj b/project.clj index c326c2a..9396708 100644 --- a/project.clj +++ b/project.clj @@ -9,6 +9,8 @@ [hickory "0.7.1"]] :plugins [[lein-ring "0.12.5"]] :ring {:handler clojsa.handler/app} + :uberjar-name "clojsa-standalone.jar" :profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"] - [ring/ring-mock "0.3.2"]]}}) + [ring/ring-mock "0.3.2"]]} + :production {:env {:production true}}})