A simple blogging platform with Haskell and Scotty
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- .PHONY: setup
- setup:
- stack setup
-
-
- .PHONY: build
- build:
- stack build
-
- .PHONY: ghci
- ghci:
- stack ghci
-
- .PHONY: dev
- dev:
- stack build --fast --file-watch
-
- .PHONY: run
- run:
- stack build && stack exec -- hablog http --port 8000
-
- .PHONY: clean
- clean:
- stack clean && rm -r .stack-work
|