Initial commit: Agent Command Center dashboard + weather briefing agent

This commit is contained in:
2026-04-13 01:06:42 +00:00
commit c86eb9ccc5
8 changed files with 857 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi uvicorn sqlalchemy
COPY . .
EXPOSE 8550
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8550"]