summaryrefslogtreecommitdiff
path: root/ibb/Main.hs
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2019-02-16 20:23:43 -0800
committerBen Sima <ben@bsima.me>2019-02-16 20:23:43 -0800
commit225f2c575d18f080daa82d634af7f1fde4f03809 (patch)
tree804f642d8cf69532f0a6396ee1d188fb12b32474 /ibb/Main.hs
parentbff6797107bb2534a8e130c7a0d3be132f1d05a6 (diff)
Fix port
oops
Diffstat (limited to 'ibb/Main.hs')
-rw-r--r--ibb/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ibb/Main.hs b/ibb/Main.hs
index 04832e5..544b0c8 100644
--- a/ibb/Main.hs
+++ b/ibb/Main.hs
@@ -21,7 +21,7 @@ css :: ByteString -> ActionM ()
css src = setHeader "content-type" "text/css" >> raw src
main :: IO ()
-main = scotty 3001 $ do
+main = scotty 3000 $ do
get "/" $ render homepage
get "/custom.css" $ css stylesheet