Skip to content
Snippets Groups Projects
Commit f950c015 authored by Menezes, Luke J (PG/T - Comp Sci & Elec Eng)'s avatar Menezes, Luke J (PG/T - Comp Sci & Elec Eng)
Browse files

Upload New File

parent 0e7e841c
No related branches found
No related tags found
No related merge requests found
image: python3.9
stages:
- pipeline
before_script:
- pip3 install -r requirements.txt
pipeline:
stage: pipeline
script:
- echo "build stage"
- jupyter nbconvert --to script app.ipynb
- if [ ! -f app.py ]; then echo "Conversion failed, exiting pipeline"; exit 1; fi
- echo "build completed"
- echo "Starting Flask"
- nohup python3 app.py &
- sleep 5
- echo "App should have started in the background"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment