Backend fixes: - Remove --reload flag to prevent dev mode cycling - Add curl for health checks - Configure PostgreSQL connection properly - Fix Docker CMD for production deployment Frontend fixes: - Use serve for production static file serving - Add curl for health checks (installed as root before user switch) - Configure proper host binding for containers - Fix Dockerfile layer ordering Results: - ✅ Backend: 1/2 replicas running, health checks passing - ✅ Frontend: 2/2 replicas running, serving requests - ✅ Health endpoints responding correctly - ✅ Services stable and persistent 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
579 B
Python
19 lines
579 B
Python
from sqlalchemy import create_engine
|
|
from sqlalchemy.ext.declarative import declarative_base
|
|
from sqlalchemy.orm import sessionmaker
|
|
import os
|
|
|
|
# Use PostgreSQL in production, SQLite for development
|
|
DATABASE_URL = os.getenv("DATABASE_URL", "sqlite:///./hive.db")
|
|
|
|
engine = create_engine(DATABASE_URL, connect_args={"check_same_thread": False} if "sqlite" in DATABASE_URL else {})
|
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
|
|
|
Base = declarative_base()
|
|
|
|
def get_db():
|
|
db = SessionLocal()
|
|
try:
|
|
yield db
|
|
finally:
|
|
db.close() |