From 250fdc93a33f8f759a475c7fa2709026d09f6f25 Mon Sep 17 00:00:00 2001 From: laansdole Date: Wed, 21 Jan 2026 14:57:03 +0700 Subject: [PATCH] chores: makefile utility --- .gitignore | 39 +++++++++++++++++++++++++-------------- Makefile | 7 +++++++ 2 files changed, 32 insertions(+), 14 deletions(-) create mode 100644 Makefile diff --git a/.gitignore b/.gitignore index 64b57f84..96b6481f 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ \ No newline at end of file +temp/ +WareHouse/ \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..8364ceca --- /dev/null +++ b/Makefile @@ -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