File size: 265 Bytes
5e1dfdc
 
 
 
 
 
 
 
 
490ec84
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
echo "Setting up virtual environment..."
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r backend/requirements.txt

echo "Starting backend..."
# example start, user should replace with actual main file entry point