feature/implement-bot-into-client-core #2

Merged
logan merged 42 commits from feature/implement-bot-into-client-core into master 2023-05-06 14:45:00 -04:00
2 changed files with 25 additions and 0 deletions
Showing only changes of commit 546d9e8829 - Show all commits

10
Client/setup.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
apt-get update
apt-get upgrade -y
apt-get install -y nodejs npm libopus-dev gcc make alsa-utils libasound2 libasound2-dev libpulse-dev pulseaudio apulse
pulseaudio
npm i

15
Client/update.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Stating Message
echo "<!-- UPDATING ---!>"
# TODO - Add an updater for Stable Diffusion API
# Update the git Repo
git fetch -a -p
git pull
# Install any new libraries
npm i
# Update complete message
echo "<!--- UPDATE COMPLETE! ---!>"