mirror of
https://github.com/RealOrangeOne/notes.git
synced 2024-11-17 16:39:05 +00:00
15 lines
213 B
Makefile
15 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
|