Skip to content
Snippets Groups Projects
Commit cc322b3d 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 9e112c0d
No related branches found
No related tags found
No related merge requests found
Pipeline #72642 canceled
#!/bin/bash
# Install required Python packages
pip3 install -r requirements.txt
# Build stage
echo "build stage"
# Convert Jupyter notebook to Python script
jupyter nbconvert --to script app.ipynb
# Check if conversion was successful
if [ ! -f app.py ]; then
echo "Conversion failed, exiting pipeline"
exit 1
fi
echo "build completed"
# Start Flask application in the background
echo "Starting Flask"
nohup python3 app.py &
# Give the app some time to start
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