Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
FOLDERS=backend frontend evaluation
GOOGLE_SECRET_JSON?=$(HOME)/secret.json

.PHONY: lock
lock:
@for folder in $(FOLDERS); do (cd $$folder && make lock && cd ../); done
@cd frontend/mock-flask-api && make lock

.PHONY: init
init:
@for folder in $(FOLDERS); do (cd $$folder && make init && cd ../); done
Expand Down
4 changes: 4 additions & 0 deletions backend/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.PHONY: lock
lock:
@uv lock

.PHONY: init
init:
@uv venv .venv && \
Expand Down
4 changes: 4 additions & 0 deletions evaluation/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.PHONY: lock
lock:
@uv lock

.PHONY: init
init:
@uv sync
Expand Down
4 changes: 4 additions & 0 deletions frontend/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.PHONY: lock
lock:
@uv lock

.PHONY: init
init:
@uv venv .venv && \
Expand Down
8 changes: 8 additions & 0 deletions frontend/mock-flask-api/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.PHONY: lock
lock:
@uv lock

.PHONY: init
init:
@uv venv .venv && \
uv sync
Loading
Loading