mirror of
https://github.com/Sosokker/plain-rag.git
synced 2025-12-18 14:34:05 +01:00
chore: add run command and target version
This commit is contained in:
parent
011de22885
commit
a37e457a01
4
Makefile
4
Makefile
@ -4,6 +4,7 @@ help:
|
||||
@echo "Available targets:"
|
||||
@echo " create-tables - Create database tables using create_tables.py"
|
||||
@echo " install-deps - Install Python dependencies using uv"
|
||||
@echo " start - Start fastAPI server on port 8000"
|
||||
@echo " help - Show this help message"
|
||||
|
||||
install-deps:
|
||||
@ -13,4 +14,7 @@ create-tables:
|
||||
@echo "Creating database tables..."
|
||||
uv run python scripts/create_tables.py
|
||||
|
||||
start:
|
||||
uv run uvicorn app.main:app --port 8000
|
||||
|
||||
.DEFAULT_GOAL := help
|
||||
Loading…
Reference in New Issue
Block a user