https://github.com/gondar-software/comfyui-api
https://github.com/gondar-software/comfyui-api
api-wrapper comfyui comfyui-api stable-diffusion
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/gondar-software/comfyui-api
- Owner: gondar-software
- Created: 2024-08-28T21:05:30.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-10T04:09:24.000Z (over 1 year ago)
- Last Synced: 2025-04-14T10:06:57.383Z (about 1 year ago)
- Topics: api-wrapper, comfyui, comfyui-api, stable-diffusion
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ComfyUI-API Integration Project
This is a project what I completed for a client.
The app is designed to process text to image or image to image tasks via comfyui api, and upload processed image to firebase.
You can build comfyui integrated website or other apps referring to this app.
## Run project
- First, install dependencies.
```
pip install -r requirements.txt
```
- Second, you should export comfyui workflow as API format.
- Third, edit main.py file with your exact workflow path, prompt and other settings.
- Fourth, make `.env`file with your data.
```
PROJECT_ID=${your firebase project id}
FIREBASE_CERT_PATH=${your firebase certification path}
SERVER_URL=${your comfyui server url (e.g. localhost:8188)}
```
- Fifth, run main.py.
```
python -m main
```