server_deploy.sh hinzugefügt

This commit is contained in:
2025-03-22 23:22:00 +01:00
parent 60ed962d83
commit 100c0fa17c

12
server_deploy.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/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