Skip to content

Commit

Permalink
Create start_flask.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jackh54 authored Nov 15, 2024
1 parent 774cf71 commit 9b01a04
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions start_flask.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
cd /home/githubrunner/actions-runner/_work/Maze-Solver/Maze-Solver

# Create and activate virtual environment
python3 -m venv venv
source venv/bin/activate

# Upgrade pip and install dependencies
pip3 install --upgrade pip
pip3 install -r requirements.txt

# Start the Flask app
python3 app.py

0 comments on commit 9b01a04

Please sign in to comment.