wip: dashboard wiring (real backend) + Docker compose for production

This commit is contained in:
Nora
2026-06-22 14:07:31 -06:00
parent 4a382c0b16
commit 0677e4fd65
18 changed files with 1879 additions and 155 deletions
+24
View File
@@ -0,0 +1,24 @@
# Exclude everything not needed at runtime from the backend image.
# This file is read when backend/ is used as the build context. The
# docker-compose build uses the repo root as context and references
# `backend/...` paths explicitly, so most of these exclusions are belt-
# and-suspenders for any future `docker build backend/` invocation.
**/__pycache__
**/*.pyc
**/*.pyo
**/.pytest_cache
**/.mypy_cache
**/.ruff_cache
**/.coverage
**/.tox
**/.venv
**/venv
**/node_modules
tests/
docs/
.coverage*
htmlcov/
*.egg-info/
build/
dist/