-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.json
More file actions
32 lines (32 loc) · 1.1 KB
/
Copy pathconfig.json
File metadata and controls
32 lines (32 loc) · 1.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
{
"python": "3.13.*",
"comfyui_version": "latest",
"comfyenv_dir_name": "comfyenv",
"env_dir_name": "envs",
"env_name": "default",
"conda_env_name": "${env_name}",
"models_dir_name": "models",
"extra_model_paths_config": "extra_model_paths.yaml",
"env_config_name": "config.json",
"pid_file_name": "${env_name}.pid",
"env_created": false,
"HOME": null,
"TEMP": null,
"USERNAME": null,
"COMFYENV_ROOT": null,
"comfyenv_root": "${COMFYENV_ROOT}",
"envs_root": "${comfyenv_root}/${env_dir_name}",
"user_root": "${HOME}/${comfyenv_dir_name}",
"env_dir": "${envs_root}/${env_name}",
"user_dir": "${user_root}/${env_name}",
"comfyui_root": "${env_dir}",
"envpref_path": "${comfyenv_root}/envpref.json",
"models_dir": "${comfyenv_root}/${models_dir_name}",
"extra_model_paths_config_path": "${env_dir}/${extra_model_paths_config}",
"temp_dir": "${TEMP}/${USERNAME}_${env_name}",
"env_config_path": "${env_dir}/${env_config_name}",
"pid_path": "${env_dir}/${pid_file_name}",
"comfyui_args": [
"--port", "8188"
]
}