deploy config
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-04 17:26:51 +01:00
parent d6daf4fc24
commit fd2cc3c18e
2 changed files with 2 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ RUN python3.11 -m venv $VIRTUAL_ENV
RUN pip install -r requirements.txt RUN pip install -r requirements.txt
COPY . . COPY . .
COPY deploy/* .
# Deploy templates and prepare app # Deploy templates and prepare app
RUN reflex init RUN reflex init

View File

@@ -6,4 +6,5 @@ config = rx.Config(
api_url="https://ipad.pb42.de", api_url="https://ipad.pb42.de",
env=rx.Env.PROD, env=rx.Env.PROD,
loglevel="debug", loglevel="debug",
telemetry_enabled=False,
) )