Sprint 1: Foundation — FastAPI scaffold, auth, DB schema, mock WhatsApp, Docker #1

Merged
abiba-bot merged 5 commits from fm/denya-onecare-s1 into main 2026-07-23 17:09:02 +00:00
2 changed files with 8 additions and 1 deletions
Showing only changes of commit 955b59945c - Show all commits
+1 -1
View File
@@ -14,7 +14,7 @@ COPY alembic/ alembic/
COPY app/ app/
# Install Python dependencies
RUN pip install --no-cache-dir -e .
RUN pip install --no-cache-dir .
# Expose port
EXPOSE 8000
+7
View File
@@ -15,6 +15,13 @@ dependencies = [
"aiosqlite>=0.20.0",
]
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["app*"]
[project.optional-dependencies]
dev = [
"pytest>=8.0",