Nathyboy commited on
Commit
24a9d86
·
verified ·
1 Parent(s): fd6ea09

Update start.sh

Browse files
Files changed (1) hide show
  1. start.sh +5 -2
start.sh CHANGED
@@ -1,9 +1,12 @@
 
1
  #!/bin/bash
2
 
3
  # Create folders before launching WebUI
4
  python create_folders.py
5
 
6
- python auto_frame_sync.py & #runs frame sync in background
 
7
 
8
- # Launch WebUI with GPU-safe flags
9
  python launch.py --listen --xformers --enable-insecure-extension-access --medvram
 
 
1
+
2
  #!/bin/bash
3
 
4
  # Create folders before launching WebUI
5
  python create_folders.py
6
 
7
+ # Run frame sync in background (optional)
8
+ python auto_frame_sync.py &
9
 
10
+ # Launch WebUI no cd needed
11
  python launch.py --listen --xformers --enable-insecure-extension-access --medvram
12
+