Added .gitlab-ci.yml

This commit is contained in:
Teodor
2026-05-06 23:40:10 +02:00
parent d7544c2156
commit 5c04cc0783

12
.gitlab-ci.yml Normal file
View File

@@ -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