(defproject status-server "0.1.0-SNAPSHOT" :description "status server" :dependencies [[org.clojure/clojure "1.7.0"] [cheshire "5.5.0"] [liberator "0.13"] [ring-server "0.4.0"] [compojure "1.4.0"] [ring-middleware-format "0.7.0"] [ring/ring-jetty-adapter "1.4.0"] [environ "1.0.2"] [org.clojure/java.jdbc "0.3.7"] [org.postgresql/postgresql "9.4-1206-jdbc41"] [korma "0.4.2"] [clj-time "0.11.0"] [twilio-api "1.0.1"]] :plugins [[lein-ring "0.9.7"] [lein-environ "1.0.2"]] :profiles {:dev {:source-paths ["src"] :env {:database-url "postgresql://status_user:status_password@localhost:5432/status" :twilio-sid "AC9288247e0bf8b86ff56ba35063e73694" :twilio-token "18a86fda23a959b798fd9897372f55e2" :twilio-from "+4915735990032"}}} :ring {:handler status-server.handler/app :init status-server.handler/init :destroy status-server.handler/destroy} :main ^:skip-aot status-server.handler :min-lein-version "2.1.2")