From 28e2aa8e2dfe016222beb31565887cc907fe9ff2 Mon Sep 17 00:00:00 2001 From: DrMaxNix Date: Fri, 3 May 2024 11:12:50 +0200 Subject: [PATCH] :adhesive_bandage: hardcode http port --- src/pronouns/web.clj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pronouns/web.clj b/src/pronouns/web.clj index 2c348c0..9fd740d 100644 --- a/src/pronouns/web.clj +++ b/src/pronouns/web.clj @@ -83,5 +83,4 @@ params/wrap-params)) (defn -main [] - (let [port (Integer. (:port env))] - (jetty/run-jetty app {:port port}))) + (jetty/run-jetty app {:port 80}))