Now a simple re-frame app

This commit is contained in:
Bryce Covert
2017-12-07 11:23:57 -08:00
parent 275119c362
commit 5b578c11e8
13 changed files with 618 additions and 40 deletions

View File

@@ -0,0 +1,9 @@
(ns auto-ap.server
(:require [auto-ap.handler :refer [app]]
[config.core :refer [env]]
[ring.adapter.jetty :refer [run-jetty]])
(:gen-class))
(defn -main [& args]
(let [port (Integer/parseInt (or (env :port) "3000"))]
(run-jetty app {:port port :join? false})))