From 5868cd6b15344734ab6a23e0ed159bffa7bd70ff Mon Sep 17 00:00:00 2001 From: Musab Erdem Date: Tue, 11 Jun 2024 10:30:19 +0200 Subject: [PATCH] =?UTF-8?q?Shell=20Befehle=20f=C3=BCr=20start=20und=20upda?= =?UTF-8?q?te=20hinzugef=C3=BCgt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- start.sh | 3 +++ update.sh | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 start.sh create mode 100644 update.sh diff --git a/start.sh b/start.sh new file mode 100644 index 0000000..3cdd716 --- /dev/null +++ b/start.sh @@ -0,0 +1,3 @@ +#!/bin/bash +source .venv/bin/activate +python main.py \ No newline at end of file diff --git a/update.sh b/update.sh new file mode 100644 index 0000000..7aca89d --- /dev/null +++ b/update.sh @@ -0,0 +1,5 @@ +#!/bin/bash +git checkout main +git reset --hard +git fetch +git reset --hard origin/main \ No newline at end of file