13 lines
494 B
Bash
13 lines
494 B
Bash
|
#!/bin/bash
|
||
|
chmod +x just_do_everything.py
|
||
|
python3 -m venv gitea_venv
|
||
|
source ./gitea_venv/bin/activate
|
||
|
pip install -q hcloud
|
||
|
echo "############################"
|
||
|
echo "Let's clean everything from last run..."
|
||
|
python just_do_everything.py --clean
|
||
|
echo "--------------------------------------------------------------------------"
|
||
|
echo " Success! I guess..."
|
||
|
echo "############################"
|
||
|
echo "Let's spawn some new machines!"
|
||
|
python just_do_everything.py --create
|