From 0eb0bc0d41195111c288a70e29f437b0545b3bdb Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Sat, 4 Apr 2026 20:34:59 +0200 Subject: [PATCH] fix: more bugfixes, refs NOISSUE --- Containerfile | 2 +- ai_software_factory/database.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index c380c61..13002aa 100644 --- a/Containerfile +++ b/Containerfile @@ -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 diff --git a/ai_software_factory/database.py b/ai_software_factory/database.py index ca4721e..4f7c714 100644 --- a/ai_software_factory/database.py +++ b/ai_software_factory/database.py @@ -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: