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

39
.gitignore vendored
View File

@ -1,18 +1,29 @@
*.pyc
.DS_Store
.idea
.vscode
# Python
__pycache__/
.env/
*.pyc
# Virtual environments
.venv/
env/
venv/
.idea
.venv
.uv-cache
logs
node_modules
frontend/.vscode
WareHouse/
env/
# uv
.uv-cache/
# IDEs
.idea/
.vscode/
frontend/.vscode/
# OS
.DS_Store
# Environment
.env
# Project Specific
logs/
node_modules/
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