sample Docker/-compose file

This commit is contained in:
matthias@matsewe.de
2024-07-02 13:51:19 +02:00
parent dbaf0c5e4c
commit b48a27b2a3
5 changed files with 36 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ from starlette.middleware import Middleware
from starlette_context import context, plugins
from starlette_context.middleware import RawContextMiddleware
if os.path.isfile("first_run") and (os.environ.get("RELOAD_ON_FIRST_RUN").lower() == "true"):
if os.path.isfile("first_run") and (os.environ.get("RELOAD_ON_FIRST_RUN", "").lower() == "true"):
print("First run ... load data")
with SessionLocal() as db:
asyncio.run(admin.create_upload_file(include_non_singable=True, db=db))