fix: more bugfixes, refs NOISSUE

This commit is contained in:
2026-04-04 20:34:59 +02:00
parent a73644b1da
commit 0eb0bc0d41
2 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ COPY ./ai_software_factory .
# fi
# Initialize database tables (use SQLite by default, can be overridden by DB_POOL_SIZE env var)
RUN python database.py || true
# RUN python database.py || true
# Expose port
EXPOSE 8000

View File

@@ -2,8 +2,8 @@
from sqlalchemy import create_engine, event
from sqlalchemy.orm import sessionmaker, Session
from ai_software_factory.config import settings
from ai_software_factory.models import Base
from config import settings
from models import Base
def get_engine() -> create_engine: