From a979a72a655409e101a71449c6c9049ccf3dda3b Mon Sep 17 00:00:00 2001 From: Anja Freudenreich Date: Thu, 13 Feb 2025 10:50:54 +0000 Subject: [PATCH] .drone.yml aktualisiert --- .drone.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 0eca407..14fbd42 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,8 +8,9 @@ steps: image: python:3.9-slim commands: - pip install --no-cache-dir -r requirements.txt - - python app.py + - python app.py & # Run the Flask app in the background + - sleep 10 # Optional: Wait for the Flask app to start before continuing (you can adjust or remove this depending on the app's startup time) trigger: branch: - - master \ No newline at end of file + - master