-
-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat/restore-snapshot #30
Merged
Merged
Changes from 16 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
69848e5
feat: provide option to run the handler locally as API
TimPietrusky e3de2fa
ci: run the workflow on our extended instance
TimPietrusky fb17089
feat: the local API should run on 0.0.0.0
TimPietrusky e748931
feat: make the image smaller
TimPietrusky 8f5a379
ci: use semantic-version to create releases automatically
TimPietrusky f66b2ca
chore: we don't want to break anyone with a minor release
TimPietrusky b6972f3
docs: added section for local API testing
TimPietrusky fea12e8
ci: use custom runner
TimPietrusky d603c91
fix: added .releaserc, otherwise semantic-release will complain about…
TimPietrusky f11dbef
Merge branch 'main' into dev
TimPietrusky e4276de
feat: support network volumes, skip default models (#16)
Meptl 201f64e
feat: provide access to ComfyUI via web
TimPietrusky 4b48ef0
fix: use the full path to the output image
TimPietrusky 18c510c
feat: added env vars COMFY_POLLING_INTERVAL_MS and COMFY_POLLING_MAX_…
TimPietrusky 5435d6c
test: added "subfolder"
TimPietrusky c7747ce
Implement optional restoring of ComfyUI snapshots
kklemon 6d67d7e
feat: use comfy-cli to install ComfyUI & restore snapshot
TimPietrusky 926a6a1
fix: install all dependencies from the snapshot
TimPietrusky c949e94
chore: moved example snapshot to test_resources
TimPietrusky 6a83143
feat: allow any kind of snapshot file
TimPietrusky 9926f75
feat: allow any file that has "snapshot" in its name
TimPietrusky 7607a43
ci: added test for "restore-snapshot"
TimPietrusky a6b0c6b
Merge branch 'main' into feat/snapshot-restoring
TimPietrusky 07c5a8c
ci: run restore snapshat test automatically
TimPietrusky 4e3e76d
docs: use "snapshots" to bake custom nodes into the docker image
TimPietrusky 3f2daef
docs: add link to ComfyUI Manager docs on how to export snapshots
TimPietrusky 7ed6c19
ci: use correct path to example_snapshot.json
TimPietrusky 0b2bcd1
ci: fix the path
TimPietrusky cf24d23
ci: fix the file path
TimPietrusky 0393d84
ci: use a mock instead of the actual file
TimPietrusky 473f4f3
ci: fix the path
TimPietrusky f3929cb
chore: don't ignore snapshot.json as people might use this
TimPietrusky File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ venv | |
data | ||
models | ||
simulated_uploaded | ||
__pycache__ | ||
__pycache__ | ||
snapshot.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"branches": [ | ||
"main" | ||
], | ||
"tagFormat": "${version}", | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/changelog", | ||
{ | ||
"changelogFile": "CHANGELOG.md" | ||
} | ||
], | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
"assets": ["README.md", "CHANGELOG.md"], | ||
"message": "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}" | ||
} | ||
], | ||
"@semantic-release/github" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why would we have
jso[n]
here when we always expect a json-file?