diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/redirectly/deploy.clj | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/redirectly/deploy.clj b/src/redirectly/deploy.clj new file mode 100644 index 0000000..48fe0a7 --- /dev/null +++ b/src/redirectly/deploy.clj @@ -0,0 +1,7 @@ +(ns redirectly.deploy
+ (:gen-class)
+ (:require [ring.adapter.jetty :refer [run-jetty]]
+ [redirectly.core :refer [handler]]))
+
+(defn -main [& args]
+ (run-jetty handler {:port 3000}))
|
