-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJustfile
More file actions
35 lines (29 loc) · 762 Bytes
/
Justfile
File metadata and controls
35 lines (29 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@_:
just --list --unsorted
[group("lifecycle")]
clean:
rm -rf \
.DS_Store \
.ruff_cache \
.venv
find . -type d -name "__pycache__" -exec rm -r {} +
[group("lifecycle")]
install:
uv venv --python 3.12 .venv
uv pip install --requirements requirements.txt
[group("lifecycle")]
fresh: clean install
[group("qa")]
lint:
uv run ruff check
uv run ruff format --diff
[group("build")]
build-notebook notebook:
uv run marimo export html-wasm \
{{notebook}}/{{notebook}}.py \
--output docs/{{notebook}} \
--mode edit --show-code --force
[group("build")]
build-notebooks:
just build-notebook 00_Bevezetes_es_kurzusinformaciok
just build-notebook 01_A_Python_programozasi_nyelvrol