7 lines
448 B
Bash
7 lines
448 B
Bash
git clone https://git.ralphie.xyz/Jordan/math-website.git
|
|
cd math-website
|
|
sudo apt install python3.14-venv screen
|
|
python3 -m venv venv
|
|
echo "screen -S math-website source venv/bin/activate && pip install flask flask_mail flask_sqlalchemy werkzeug gunicorn && gunicorn --workers 3 --bind 0.0.0.0:8000 app:app"
|
|
chmod +x launch.sh
|
|
echo To launch the website run ./launch.sh when launched you can deatach from the screen with (ctrl + a + d) all at once |