Skip to content

Commit

Permalink
Add Makefile for easier running
Browse files Browse the repository at this point in the history
  • Loading branch information
bergie committed Dec 29, 2023
1 parent 700a01f commit 0b8c72b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
public/
docs/.obsidian/workspace.json
.DS_Store
venv/
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.PHONY: run
venv=. venv/bin/activate &&

venv:
python -m venv venv

deps: venv
$(venv) pip install -r requirements.txt

run:
$(venv) mkdocs serve -a 0.0.0.0:8000 --no-livereload

all: deps

0 comments on commit 0b8c72b

Please sign in to comment.