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: