-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
launch-macos.sh
executable file
·55 lines (45 loc) · 1.91 KB
/
launch-macos.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env bash
# Ensure correct local path.
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
cd "$SCRIPT_DIR"
# Try to encourage Mac to use the correct python version (ie don't use global default which is often 3.13 for mac users, instead use 11, 10, or 12)
export PATH="/opt/homebrew/opt/[email protected]/libexec/bin:/opt/homebrew/opt/[email protected]/libexec/bin:/opt/homebrew/opt/[email protected]/libexec/bin:$PATH"
# PyTorch MPS fallback to CPU, so incompatible comfy nodes can still work.
export PYTORCH_ENABLE_MPS_FALLBACK=1
source ./launchtools/linux-path-fix.sh
# Server settings option
if [ -f ./src/bin/always_pull ]; then
echo "Pulling latest changes..."
git pull
fi
if [ -f ./src/bin/must_rebuild ]; then
echo "Rebuilding..."
rm -rf ./src/bin/live_release_backup
mv ./src/bin/live_release ./src/bin/live_release_backup
rm ./src/bin/must_rebuild
elif [ -d .git ]; then
cur_head=`git rev-parse HEAD`
built_head=`cat src/bin/last_build`
if [ "$cur_head" != "$built_head" ]; then
printf "\n\nWARNING: You did a git pull without building. Will now build for you...\n\n"
rm -rf ./src/bin/live_release_backup
mv ./src/bin/live_release ./src/bin/live_release_backup
fi
else
printf "\n\nWARNING: YOU DID NOT CLONE FROM GIT. THIS WILL BREAK SOME SYSTEMS. PLEASE INSTALL PER THE README.\n\n"
fi
# Build the program if it isn't already built
if [ ! -f src/bin/live_release/SwarmUI.dll ]; then
dotnet build src/SwarmUI.csproj --configuration Release -o ./src/bin/live_release
cur_head=`git rev-parse HEAD`
echo $cur_head > src/bin/last_build
fi
# Default env configuration, gets overwritten by the C# code's settings handler
ASPNETCORE_ENVIRONMENT="Production"
ASPNETCORE_URLS="http://*:7801"
# Actual runner.
./src/bin/live_release/SwarmUI $@
# Exit code 42 means restart, anything else = don't.
if [ $? == 42 ]; then
. ./launch-macos.sh $@
fi