-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (24 loc) · 748 Bytes
/
Makefile
File metadata and controls
29 lines (24 loc) · 748 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
lock-all:
./scripts/lock-dist.sh worker-template
./scripts/lock-dist.sh asr-worker
./scripts/lock-dist.sh extract-worker
./scripts/lock-dist.sh translation-worker
./scripts/lock-dist.sh workflows-worker
lock-dist:
./scripts/lock-dist.sh ${project}
create-venv:
[ -d .venv ] || uv venv --python 3.13
install-deps:
uv pip install --override requirements_overrides.txt -e asr_worker/
uv pip install -e translation-worker/
uv pip install -e datashare-python/
uv pip install -e worker-template/
uv pip install -r requirements_dev.txt
create-dirs:
mkdir .data .data/temporal .data/datashare || true
ln -s resources/files/asr .data/temporal/asr || true
install:
make create-venv
make install-deps
make create-dirs
pre-commit install