Add backend, worker, deploy docker-compose and CI skeleton
CI / basic-check (push) Has been cancelled

This commit is contained in:
Perplexity Bot
2026-08-03 21:42:20 +00:00
parent 0294301877
commit 00ecb1862d
6 changed files with 93 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from fastapi import FastAPI
app = FastAPI(title="NetMapper API", version="0.1.0")
@app.get("/health")
def health():
return {"status": "ok"}
@app.get("/api/v1")
def root():
return {"service": "netmapper-backend", "version": "0.1.0"}
+6
View File
@@ -0,0 +1,6 @@
fastapi==0.115.0
uvicorn[standard]==0.30.6
pydantic==2.9.2
sqlalchemy==2.0.35
psycopg[binary]==3.2.3
redis==5.1.1