Skip to content

Commit

Permalink
Fix the Makefile's doc rules
Browse files Browse the repository at this point in the history
  • Loading branch information
tchoutri committed Jun 27, 2023
1 parent bf72899 commit eb5cfaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ style: ## Run the code styler (stylish-haskell)
@find docs/src test src -name "*.hs" | xargs -P $(PROCS) -I {} fourmolu -q --mode inplace {}

docs-build: ## Generate the documentation
@cd docs; mkdocs build
@cabal run book -- process

docs-serve: ## Start a web server to serve the documentation
@cd docs; mkdocs serve
@cd docs; mdbook serve --open

db-create: ## Create the database
@createdb -h $(DB_HOST) -p $(DB_PORT) -U $(DB_USER) $(DB_DATABASE)
Expand Down

0 comments on commit eb5cfaa

Please sign in to comment.