Shell Befehle für start und update hinzugefügt.

This commit is contained in:
2024-06-11 10:30:19 +02:00
parent 4969ad3b14
commit 5868cd6b15
2 changed files with 8 additions and 0 deletions

3
start.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
source .venv/bin/activate
python main.py

5
update.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
git checkout main
git reset --hard
git fetch
git reset --hard origin/main