chores: makefile utility

This commit is contained in:
laansdole 2026-01-21 14:57:03 +07:00
parent d2695f9bcb
commit 250fdc93a3
2 changed files with 32 additions and 14 deletions

37
.gitignore vendored
View File

@ -1,18 +1,29 @@
*.pyc # Python
.DS_Store
.idea
.vscode
__pycache__/ __pycache__/
.env/ *.pyc
# Virtual environments
.venv/ .venv/
env/
venv/ venv/
.idea env/
.venv
.uv-cache # uv
logs .uv-cache/
node_modules
frontend/.vscode # IDEs
WareHouse/ .idea/
.vscode/
frontend/.vscode/
# OS
.DS_Store
# Environment
.env
# Project Specific
logs/
node_modules/
data/ data/
temp/ temp/
WareHouse/

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
.PHONY: server
server:
@uv run python server_main.py --port 6400 --reload
.PHONY: client
client:
@cd frontend && VITE_API_BASE_URL=http://localhost:6400 npm run dev