mirror of
https://github.com/Sosokker/plain-rag.git
synced 2025-12-18 14:34:05 +01:00
16 lines
430 B
Makefile
16 lines
430 B
Makefile
.PHONY: create-tables help
|
|
|
|
help:
|
|
@echo "Available targets:"
|
|
@echo " create-tables - Create database tables using create_tables.py"
|
|
@echo " install-deps - Install Python dependencies using uv"
|
|
@echo " help - Show this help message"
|
|
|
|
install-deps:
|
|
uv sync --locked --no-install-project --no-dev
|
|
|
|
create-tables:
|
|
@echo "Creating database tables..."
|
|
uv run python scripts/create_tables.py
|
|
|
|
.DEFAULT_GOAL := help
|