Implement setup and update scripts

This commit is contained in:
Logan Cusano
2023-03-31 23:45:17 -04:00
parent 6b484ddda4
commit 546d9e8829
2 changed files with 25 additions and 0 deletions

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! ---!>"