1
1
mirror of https://github.com/srid/ema.git synced 2024-11-29 09:25:14 +03:00

Fix incorrect port

This commit is contained in:
Sridhar Ratnakumar 2021-04-20 11:14:29 -04:00
parent c8ef3753b7
commit 593bc9c49e
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ main = do
## Hacking
Open in VSCode, and run the build task. This runs the clock example; change `./.ghcid` to run a different example.
Run `bin/run` (or <kbd>Ctrl+Shift+B</kbd> in VSCode). This runs the clock example; modify `./.ghcid` to run a different example.
## TODO

View File

@ -45,5 +45,5 @@ runEma ema = do
-- TODO: Use a logging library, in place of managing buffering and using putStrLn
hSetBuffering stdout LineBuffering
hSetBuffering stderr LineBuffering
putStrLn "Launching Ema at http://localhost:3000"
putStrLn "Launching Ema at http://localhost:8000"
Server.runServerWithWebSocketHotReload (emaModel ema) (emaRender ema)