aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Barksdale <amatus@amatus.name>2015-12-30 20:49:59 -0600
committerDavid Barksdale <amatus@amatus.name>2015-12-30 20:49:59 -0600
commitbde7e66ce48b1db0a65ad4ccaceef96271d1b90d (patch)
tree556b5f4aca277c74b6c18a75f0abe1957a9ebaab
parentd2c3f6b3650677af2b62011b8a4db3894eab61c8 (diff)
Start jetty in prod
-rw-r--r--build.boot6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.boot b/build.boot
index f477fe1..1197a61 100644
--- a/build.boot
+++ b/build.boot
@@ -41,6 +41,10 @@
"Build castra-simple for production deployment."
[]
(comp
+ (serve
+ :handler 'app.handler/app
+ :port 8000)
(hoplon)
(cljs :optimizations :advanced)
- (prerender)))
+ (prerender)
+ (wait)))