2 Commits
0.1.6 ... 0.1.7

Author SHA1 Message Date
dbcd3fba91 release: version 0.1.7 🚀
All checks were successful
Upload Python Package / Create Release (push) Successful in 24s
Upload Python Package / deploy (push) Successful in 49s
2026-04-04 20:35:04 +02:00
0eb0bc0d41 fix: more bugfixes, refs NOISSUE 2026-04-04 20:34:59 +02:00
4 changed files with 12 additions and 4 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

@@ -5,6 +5,14 @@ Changelog
(unreleased)
------------
Fix
~~~
- More bugfixes, refs NOISSUE. [Simon Diesenreiter]
0.1.6 (2026-04-04)
------------------
Fix
~~~
- Proper containerfile, refs NOISSUE. [Simon Diesenreiter]

View File

@@ -1 +1 @@
0.1.6
0.1.7

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: