12 lines
399 B
Bash
12 lines
399 B
Bash
#!/bin/bash
|
|
curl -sSL http://befator.befatorinc.de:3000/TheHomecraft/tools/raw/branch/main/install_pyton_ubuntu.sh | bash
|
|
export BANK_RUN_HOST="0.0.0.0"
|
|
export BANK_RUN_PORT="5005"
|
|
python3 --version
|
|
git clone http://befator.befatorinc.de:3000/TheHomecraft/BankingServer-V2.git
|
|
cd BankingServer-V2
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
pip install -r requirements.txt
|
|
python3 server.py
|
|
exit 0 |