comfygit-deploy 0.3.4__py3-none-any.whl → 0.3.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- comfygit_deploy/commands/worker.py +8 -2
- {comfygit_deploy-0.3.4.dist-info → comfygit_deploy-0.3.6.dist-info}/METADATA +2 -2
- {comfygit_deploy-0.3.4.dist-info → comfygit_deploy-0.3.6.dist-info}/RECORD +5 -5
- {comfygit_deploy-0.3.4.dist-info → comfygit_deploy-0.3.6.dist-info}/WHEEL +0 -0
- {comfygit_deploy-0.3.4.dist-info → comfygit_deploy-0.3.6.dist-info}/entry_points.txt +0 -0
|
@@ -112,6 +112,13 @@ def handle_up(args: argparse.Namespace) -> int:
|
|
|
112
112
|
print("Worker not configured. Run 'cg-deploy worker setup' first.")
|
|
113
113
|
return 1
|
|
114
114
|
|
|
115
|
+
# Use COMFYGIT_HOME if set, otherwise fall back to config
|
|
116
|
+
workspace = get_validated_workspace()
|
|
117
|
+
if not workspace:
|
|
118
|
+
print("No valid workspace found.")
|
|
119
|
+
print("Set COMFYGIT_HOME or run 'cg-deploy worker setup --workspace /path'")
|
|
120
|
+
return 1
|
|
121
|
+
|
|
115
122
|
# Parse port range
|
|
116
123
|
port_range = args.port_range.split(":")
|
|
117
124
|
port_start = int(port_range[0])
|
|
@@ -136,7 +143,6 @@ def handle_up(args: argparse.Namespace) -> int:
|
|
|
136
143
|
if dev_manager:
|
|
137
144
|
dev_manager = str(Path(dev_manager).resolve())
|
|
138
145
|
# Symlink manager to system_nodes
|
|
139
|
-
workspace = Path(config["workspace_path"])
|
|
140
146
|
system_nodes = workspace / ".metadata" / "system_nodes"
|
|
141
147
|
system_nodes.mkdir(parents=True, exist_ok=True)
|
|
142
148
|
manager_link = system_nodes / "comfygit-manager"
|
|
@@ -163,7 +169,7 @@ def handle_up(args: argparse.Namespace) -> int:
|
|
|
163
169
|
|
|
164
170
|
app = create_worker_app(
|
|
165
171
|
api_key=config["api_key"],
|
|
166
|
-
workspace_path=
|
|
172
|
+
workspace_path=workspace,
|
|
167
173
|
default_mode=args.mode,
|
|
168
174
|
port_range_start=port_start,
|
|
169
175
|
port_range_end=port_end,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: comfygit-deploy
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
4
4
|
Summary: ComfyGit Deploy - Remote deployment and worker management CLI
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Requires-Dist: aiohttp>=3.9.0
|
|
7
|
-
Requires-Dist: comfygit==0.3.
|
|
7
|
+
Requires-Dist: comfygit==0.3.6
|
|
8
8
|
Requires-Dist: zeroconf>=0.131.0
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
|
|
@@ -6,7 +6,7 @@ comfygit_deploy/commands/custom.py,sha256=UyOngaDsZlzKLSNW873HD2ma7W0nFv_yYx9deu
|
|
|
6
6
|
comfygit_deploy/commands/dev.py,sha256=3fQoppdMtxOiyN9Y--TT5GKTiiOWEI5JF1xYdE76x_0,11138
|
|
7
7
|
comfygit_deploy/commands/instances.py,sha256=R7edUNUZSgt_dB7OWUMQBwOg-dvCLR_dvax107OvsqE,16632
|
|
8
8
|
comfygit_deploy/commands/runpod.py,sha256=OJWk46I2yoCsu_o95C_ktmJ6EnPXU4rki4SraBUeaKo,6309
|
|
9
|
-
comfygit_deploy/commands/worker.py,sha256=
|
|
9
|
+
comfygit_deploy/commands/worker.py,sha256=mLKOCXL8l_Y3zeE6_rB_GXsQsjrQSvYFCLEX-53h2u0,7857
|
|
10
10
|
comfygit_deploy/providers/__init__.py,sha256=75-usN95nTBMf_aEGkEZOFlNoz56TXZNSpL8huBDDdk,264
|
|
11
11
|
comfygit_deploy/providers/custom.py,sha256=DeOIvNy1xgN4GSU8lWlaLdKsue65c5tFTFJSoMrBfZo,7817
|
|
12
12
|
comfygit_deploy/providers/runpod.py,sha256=dFTSMzGzL3fY7GKzZ799ESjp-QvguQKmwvHMN923-lM,19220
|
|
@@ -17,7 +17,7 @@ comfygit_deploy/worker/mdns.py,sha256=sN6VnGVW8R-TyMrphZo4_WMGWEuhe5nrGDMR0hzIEt
|
|
|
17
17
|
comfygit_deploy/worker/native_manager.py,sha256=ltvjY5PI4bUBF9JkGHzfbMv1I6DncxzCWEPAsAVf4Sw,13304
|
|
18
18
|
comfygit_deploy/worker/server.py,sha256=UI1rdcMkM4xY1rDtm9ayAzKJauVD8323LpO4OwkQsYk,17503
|
|
19
19
|
comfygit_deploy/worker/state.py,sha256=HxqPNG5_ltf_KL2VM-3-ZVzUnZTqCTLgzF9AvIcvWqo,8655
|
|
20
|
-
comfygit_deploy-0.3.
|
|
21
|
-
comfygit_deploy-0.3.
|
|
22
|
-
comfygit_deploy-0.3.
|
|
23
|
-
comfygit_deploy-0.3.
|
|
20
|
+
comfygit_deploy-0.3.6.dist-info/METADATA,sha256=Eg0wfulwudBggFpKStLMc2EvC57pMU_1YZRAfWA3BUI,802
|
|
21
|
+
comfygit_deploy-0.3.6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
22
|
+
comfygit_deploy-0.3.6.dist-info/entry_points.txt,sha256=ce_A6mSttdZGySZbWok6zySv93sjtDaKX6De23i3ylM,55
|
|
23
|
+
comfygit_deploy-0.3.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|