From 5c04cc0783435d831cab58a59aaa455aa10ea7f9 Mon Sep 17 00:00:00 2001 From: Teodor Date: Wed, 6 May 2026 23:40:10 +0200 Subject: [PATCH] Added .gitlab-ci.yml --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..777b41f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +stages: + - run + +run_flask_app: + stage: run + image: python:3.11 + before_script: + - pip install -r requirements.txt + script: + - python app.py & + - sleep 5 + - curl http://127.0.0.1:5000