-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCOMFYUI_SET
More file actions
50 lines (35 loc) · 1 KB
/
COMFYUI_SET
File metadata and controls
50 lines (35 loc) · 1 KB
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
# StoryCore Asset Generator - Instructions
## Problem: ComfyUI not found
The script `start_comfyui_port8000.bat` cannot find your ComfyUI installation.
## Solutions:
### Option 1: Find your ComfyUI installation
Check where ComfyUI is installed:
```powershell
where /r C:\Users main.py
```
Or look in common locations:
- `C:\ComfyUI\main.py`
- `C:\Users\redga\Documents\ComfyUI\main.py`
- `C:\Program Files\ComfyUI\main.py`
### Option 2: Run ComfyUI manually
If you have ComfyUI installed elsewhere, run it manually:
```powershell
cd C:\[YOUR_COMFYUI_PATH]
python main.py --port 8000 --listen 0.0.0.0 --cors --cors-allow-origins "*"
```
### Option 3: Update the batch file
Edit `start_comfyui_port8000.bat` and set your path:
```batch
set COMFYUI_PATH=C:\[YOUR_PATH]
```
## After ComfyUI is running:
1. Verify ComfyUI is accessible:
```powershell
curl http://127.0.0.1:8000/
```
2. Generate assets:
```bash
python generate_assets_qwen.py
```
## Asset Output:
Generated assets will be saved to: `assets/generated/`