From ffeaa9437bd6201404e46c8b9f13c7330f0795b2 Mon Sep 17 00:00:00 2001 From: mtuszowski Date: Thu, 7 Nov 2024 10:23:04 +0100 Subject: [PATCH] Deploy script for after refactor --- deploy.sh | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/deploy.sh b/deploy.sh index f934f51..9a97750 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,9 +1,20 @@ #!/bin/bash git pull cd .. -cp ./conjurer/bot.py ./Conjurer/ +cp ./conjurer/bot.py ./Conjurer/ #legacy to be deprecated after refactor is done cp ./conjurer/settings.json ./Conjurer/ cp ./conjurer/system_gpt_settings.json ./Conjurer/ -cp ./conjurer/install.sh ./Conjurer/ -cp ./conjurer/requirements.txt ./Conjurer/requirements.txt +cp ./conjurer/communication_subroutine.py ./Conjurer/ +cp ./conjurer/voice_recognition_commands.py ./Conjurer/ +cp ./conjurer/ai_commands.py ./Conjurer/ +cp ./conjurer/ai_functions.py ./Conjurer/ +cp ./conjurer/constants.py ./Conjurer/ +cp ./conjurer/librarian_commands.py ./Conjurer/ +cp ./conjurer/music_commands.py ./Conjurer/ +cp ./conjurer/music_functions.py ./Conjurer/ +cp ./conjurer/other_commands.py ./Conjurer/ +cp ./conjurer/other_functions.py ./Conjurer/ +cp ./conjurer/radio_commands.py ./Conjurer/ +cp ./conjurer/thin_client.py ./Conjurer/ + sudo systemctl restart conjurer.service