From 100c0fa17c74da28c0321136f385b443a77104a4 Mon Sep 17 00:00:00 2001 From: TheHomecraft Date: Sat, 22 Mar 2025 23:22:00 +0100 Subject: [PATCH] =?UTF-8?q?server=5Fdeploy.sh=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server_deploy.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 server_deploy.sh diff --git a/server_deploy.sh b/server_deploy.sh new file mode 100644 index 0000000..74b6369 --- /dev/null +++ b/server_deploy.sh @@ -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 \ No newline at end of file