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