docker build -t budgeter -f Dockerfile .
docker run -p8000:80 -v /tmp/data:/data -it budgeter
You can run the project locally using the provided Makefile.
Prerequisites:
uv(for Python dependency management)npm(for Frontend dependency management)
Commands:
-
Install Dependencies:
make install
-
Run Backend:
make run-backend
-
Run Frontend:
make run-frontend
-
Run Tests:
make test