10 lines
317 B
Bash
10 lines
317 B
Bash
|
#!/bin/bash
|
||
|
chmod +x create_code_server.py
|
||
|
echo "### Creating venv is probably a good idea - let's make one..."
|
||
|
python3 -m venv code_venv
|
||
|
source ./code_venv/bin/activate
|
||
|
echo "### Now install hcloud module..."
|
||
|
pip install -q hcloud
|
||
|
echo "### And clear last deployment results..."
|
||
|
python create_code_server.py --clean
|