forked from Rezel/rezelator
3 changed files with 8 additions and 7 deletions
@ -1,2 +1,3 @@ |
|||
build |
|||
__pycache__ |
|||
.venv |
|||
|
@ -1,10 +1,10 @@ |
|||
all: build/main.css build/index.html |
|||
.PHONY: setup build |
|||
|
|||
build/main.css: build builder/templates/main.css builder/__main__.py |
|||
python3.10 -m builder |
|||
build: |
|||
bash -c 'source ${PWD}/.venv/bin/activate && python3.10 -m builder' |
|||
|
|||
build/index.html: build builder/templates/index.html config.json builder/__main__.py |
|||
python3.10 -m builder |
|||
all: setup build |
|||
|
|||
build: |
|||
mkdir build |
|||
setup: |
|||
python3.10 -m venv .venv |
|||
bash -c 'source ${PWD}/.venv/bin/activate && python3.10 -m pip install --upgrade pip && python3.10 -m pip install -r requirements.txt' |
|||
|
Binary file not shown.
Loading…
Reference in new issue