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