1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-06-17 09:43:20 +01:00
notes/justfile
2024-02-15 20:46:46 +00:00

16 lines
213 B
Makefile

export PATH := "./env/bin:" + env_var('PATH')
# Recipes
@default:
just --list
setup:
python -m venv env
env/bin/pip install -r requirements.txt
@start:
mkdocs serve
@build:
mkdocs build -v