amsdal_cli 0.6.0__py3-none-any.whl → 0.6.1__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.
amsdal_cli/__about__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # SPDX-FileCopyrightText: 2023-present
2
2
  #
3
3
  # SPDX-License-Identifier: AMSDAL End User License Agreement
4
- __version__ = '0.6.0'
4
+ __version__ = '0.6.1'
@@ -79,6 +79,12 @@ class AppBuilder(BuildMixin):
79
79
  if not is_silent:
80
80
  rprint(rich_success('OK!'))
81
81
 
82
+ if not is_silent:
83
+ rprint(rich_info('Building app config...'), end=' ')
84
+ self.build_app_config(self.source_path)
85
+ if not is_silent:
86
+ rprint(rich_success('OK!'))
87
+
82
88
  def pre_build(self, output: Path) -> None:
83
89
  from amsdal.configs.main import settings
84
90
  from amsdal_utils.config.manager import AmsdalConfigManager
@@ -194,6 +194,33 @@ class BuildMixin:
194
194
  if expected_fixtures_path.exists() and expected_fixtures_path.is_dir():
195
195
  shutil.copytree(expected_fixtures_path, target_fixtures_path, dirs_exist_ok=True)
196
196
 
197
+ @staticmethod
198
+ def build_app_config(cli_app_path: Path, output_path: Path | None = None) -> None:
199
+ """
200
+ Copies app.py from src/ to the build directory.
201
+
202
+ Args:
203
+ cli_app_path (Path): The path to the CLI application source directory (src/).
204
+ output_path (Path | None): The output directory. If None, uses settings.APP_PATH.
205
+ """
206
+ app_config_source = cli_app_path / 'app.py'
207
+
208
+ if not app_config_source.exists():
209
+ return
210
+
211
+ if output_path is None:
212
+ from amsdal.configs.main import settings
213
+
214
+ output_path = settings.APP_PATH
215
+
216
+ app_config_dest = output_path / 'app.py'
217
+
218
+ # Remove existing file to ensure fresh copy
219
+ if app_config_dest.exists():
220
+ app_config_dest.unlink()
221
+
222
+ shutil.copy(app_config_source, app_config_dest)
223
+
197
224
  @staticmethod
198
225
  def _reimport_models() -> None:
199
226
  from amsdal_models.classes.class_manager import ClassManager
@@ -15,7 +15,9 @@ def generate_frontend_config(
15
15
  """
16
16
  Generates Frontend Config fixture file for the specified model.
17
17
  """
18
- from amsdal.contrib.frontend_configs.lifecycle.consumer import get_default_control
18
+ from amsdal.contrib.frontend_configs.event_handlers.object_control import (
19
+ _get_default_control as get_default_control,
20
+ )
19
21
  from amsdal.manager import AmsdalManager
20
22
  from amsdal.manager import AsyncAmsdalManager
21
23
  from amsdal_utils.config.manager import AmsdalConfigManager
@@ -60,12 +62,12 @@ def generate_frontend_config(
60
62
  current_dir = Path('.').absolute()
61
63
 
62
64
  if frontend_config_file.exists():
63
- owerrite = input(
65
+ overwrite = input(
64
66
  f'The file "{frontend_config_file.relative_to(current_dir)}" already exists. '
65
67
  'Would you like to overwrite it? [y/N]: '
66
68
  ).strip()
67
69
 
68
- if owerrite.lower() != 'y':
70
+ if overwrite.lower() != 'y':
69
71
  return
70
72
 
71
73
  write_file(
@@ -14,3 +14,4 @@ __pycache__
14
14
  /venv
15
15
  /migrations
16
16
  /transactions
17
+ /app.py
@@ -21,9 +21,10 @@ async def _async_serve(
21
21
  *,
22
22
  apply_fixtures: bool,
23
23
  ) -> 'AsyncAmsdalManager':
24
- from amsdal_utils.lifecycle.consumer import LifecycleConsumer
25
- from amsdal_utils.lifecycle.enum import LifecycleEvent
26
- from amsdal_utils.lifecycle.producer import LifecycleProducer
24
+ from amsdal_server.apps.common.events import ServerStartupContext
25
+ from amsdal_server.apps.common.events import ServerStartupEvent
26
+ from amsdal_utils.events import EventBus
27
+ from amsdal_utils.events import EventListener
27
28
 
28
29
  from amsdal_cli.commands.serve.utils import async_build_app_and_check_migrations
29
30
 
@@ -38,11 +39,19 @@ async def _async_serve(
38
39
 
39
40
  try:
40
41
 
41
- class AmsdalInitConsumer(LifecycleConsumer):
42
- def on_event(self, *args: Any, **kwargs: Any) -> None:
43
- pass
44
-
45
- async def on_event_async(self, *args: Any, **kwargs: Any) -> None: # noqa: ARG002
42
+ class AmsdalInitListener(EventListener[ServerStartupContext]):
43
+ def handle(
44
+ self,
45
+ context: ServerStartupContext,
46
+ next_fn: Any,
47
+ ) -> ServerStartupContext:
48
+ raise NotImplementedError
49
+
50
+ async def ahandle(
51
+ self,
52
+ context: ServerStartupContext,
53
+ next_fn: Any,
54
+ ) -> ServerStartupContext:
46
55
  if not amsdal_manager._is_setup:
47
56
  await amsdal_manager.setup()
48
57
  await amsdal_manager.post_setup() # type: ignore[call-arg]
@@ -52,10 +61,12 @@ async def _async_serve(
52
61
 
53
62
  amsdal_manager.init_classes()
54
63
 
55
- LifecycleProducer.add_listener(
56
- LifecycleEvent.ON_SERVER_STARTUP,
57
- AmsdalInitConsumer,
58
- insert_first=True,
64
+ return await next_fn(context)
65
+
66
+ EventBus.subscribe(
67
+ ServerStartupEvent,
68
+ AmsdalInitListener,
69
+ priority=0,
59
70
  )
60
71
  return amsdal_manager
61
72
  except Exception:
@@ -91,11 +102,12 @@ def serve_command(
91
102
  Starts a test FastAPI server based on your app's models.
92
103
  """
93
104
 
105
+ from amsdal_server.apps.common.events import ServerStartupContext
106
+ from amsdal_server.apps.common.events import ServerStartupEvent
94
107
  from amsdal_server.server import start
95
108
  from amsdal_utils.config.manager import AmsdalConfigManager
96
- from amsdal_utils.lifecycle.consumer import LifecycleConsumer
97
- from amsdal_utils.lifecycle.enum import LifecycleEvent
98
- from amsdal_utils.lifecycle.producer import LifecycleProducer
109
+ from amsdal_utils.events import EventBus
110
+ from amsdal_utils.events import EventListener
99
111
 
100
112
  from amsdal_cli.commands.serve.services.supervisor import Supervisor
101
113
  from amsdal_cli.commands.serve.utils import build_app_and_check_migrations
@@ -138,7 +150,6 @@ def serve_command(
138
150
  )
139
151
  try:
140
152
  start(
141
- is_development_mode=False,
142
153
  host=host,
143
154
  port=server_port,
144
155
  )
@@ -154,8 +165,12 @@ def serve_command(
154
165
  confirm_migrations=False,
155
166
  )
156
167
 
157
- class AmsdalInitConsumer(LifecycleConsumer):
158
- def on_event(self, *args: Any, **kwargs: Any) -> None: # noqa: ARG002
168
+ class AmsdalInitListener(EventListener[ServerStartupContext]):
169
+ def handle(
170
+ self,
171
+ context: ServerStartupContext,
172
+ next_fn: Any,
173
+ ) -> ServerStartupContext:
159
174
  if not amsdal_manager._is_setup:
160
175
  amsdal_manager.setup()
161
176
  amsdal_manager.post_setup() # type: ignore[call-arg]
@@ -165,16 +180,21 @@ def serve_command(
165
180
 
166
181
  amsdal_manager.init_classes()
167
182
 
168
- async def on_event_async(self, *args: Any, **kwargs: Any) -> None:
169
- pass
183
+ return next_fn(context)
184
+
185
+ async def ahandle(
186
+ self,
187
+ context: ServerStartupContext,
188
+ next_fn: Any,
189
+ ) -> ServerStartupContext:
190
+ raise NotImplementedError
170
191
 
171
- LifecycleProducer.add_listener(
172
- LifecycleEvent.ON_SERVER_STARTUP,
173
- AmsdalInitConsumer,
174
- insert_first=True,
192
+ EventBus.subscribe(
193
+ ServerStartupEvent,
194
+ AmsdalInitListener,
195
+ priority=0,
175
196
  )
176
197
  start(
177
- is_development_mode=False,
178
198
  host=host,
179
199
  port=server_port,
180
200
  )
@@ -192,7 +192,6 @@ class Supervisor:
192
192
  target=cls._check_and_serve,
193
193
  kwargs={
194
194
  'queue': queue,
195
- 'is_development_mode': False,
196
195
  'output_path': output_path,
197
196
  'config_path': config_path,
198
197
  'host': host,
@@ -208,7 +207,6 @@ class Supervisor:
208
207
  cls,
209
208
  queue: QueueType,
210
209
  *,
211
- is_development_mode: bool,
212
210
  output_path: Path,
213
211
  config_path: Path,
214
212
  host: str,
@@ -226,7 +224,6 @@ class Supervisor:
226
224
  _server_process = spawn_context.Process(
227
225
  target=cls._serve,
228
226
  kwargs={
229
- 'is_development_mode': is_development_mode,
230
227
  'output_path': output_path,
231
228
  'config_path': config_path,
232
229
  'host': host,
@@ -337,14 +334,25 @@ class Supervisor:
337
334
  config_path: Path,
338
335
  **kwargs: Any,
339
336
  ) -> None:
340
- from amsdal_utils.lifecycle.consumer import LifecycleConsumer
341
- from amsdal_utils.lifecycle.enum import LifecycleEvent
342
- from amsdal_utils.lifecycle.producer import LifecycleProducer
337
+ import os
338
+
339
+ from amsdal_server.apps.common.events import ServerStartupContext
340
+ from amsdal_server.apps.common.events import ServerStartupEvent
341
+ from amsdal_utils.events import EventBus
342
+ from amsdal_utils.events import EventListener
343
+
344
+ # Set APP_PATH via env var BEFORE any settings access
345
+ # This ensures _load_user_app() finds app.py in the correct location
346
+ os.environ['AMSDAL_APP_PATH'] = str(output_path)
343
347
 
344
348
  cls._invalidate_amsdal_state()
345
349
 
346
- class AmsdalInitConsumer(LifecycleConsumer):
347
- def on_event(self, *args: Any, **kwargs: Any) -> None: # noqa: ARG002
350
+ class AmsdalInitListener(EventListener[ServerStartupContext]):
351
+ def handle(
352
+ self,
353
+ context: ServerStartupContext,
354
+ next_fn: Any,
355
+ ) -> ServerStartupContext:
348
356
  settings.override(APP_PATH=output_path)
349
357
 
350
358
  config_manager = AmsdalConfigManager()
@@ -356,13 +364,19 @@ class Supervisor:
356
364
  amsdal_manager.authenticate()
357
365
  amsdal_manager.init_classes()
358
366
 
359
- async def on_event_async(self, *args: Any, **kwargs: Any) -> None:
360
- pass
367
+ return next_fn(context)
368
+
369
+ async def ahandle(
370
+ self,
371
+ context: ServerStartupContext,
372
+ next_fn: Any,
373
+ ) -> ServerStartupContext:
374
+ raise NotImplementedError
361
375
 
362
- LifecycleProducer.add_listener(
363
- LifecycleEvent.ON_SERVER_STARTUP,
364
- AmsdalInitConsumer,
365
- insert_first=True,
376
+ EventBus.subscribe(
377
+ ServerStartupEvent,
378
+ AmsdalInitListener,
379
+ priority=0,
366
380
  )
367
381
  start(**kwargs)
368
382
 
@@ -40,6 +40,11 @@ def cleanup_app(output_path: Path, *, remove_warehouse: bool = True) -> None:
40
40
  continue
41
41
  shutil.rmtree(str(path.resolve()))
42
42
 
43
+ # Remove generated app.py
44
+ app_py_path = output_path / 'app.py'
45
+ if app_py_path.exists():
46
+ app_py_path.unlink()
47
+
43
48
  warehouse_path = output_path / 'warehouse'
44
49
 
45
50
  if remove_warehouse and warehouse_path.exists():
@@ -74,11 +79,16 @@ def build_app_and_check_migrations(
74
79
  from amsdal.manager import AmsdalManager
75
80
 
76
81
  from amsdal_cli.commands.build.services.builder import AppBuilder
82
+
83
+ # Copy app.py BEFORE creating AppBuilder (which triggers settings initialization)
84
+ from amsdal_cli.commands.build.services.mixin import BuildMixin
77
85
  from amsdal_cli.utils.text import CustomConfirm
78
86
  from amsdal_cli.utils.text import rich_error
79
87
  from amsdal_cli.utils.text import rich_info
80
88
  from amsdal_cli.utils.text import rich_success
81
89
 
90
+ BuildMixin.build_app_config(app_source_path, output_path)
91
+
82
92
  app_builder = AppBuilder(
83
93
  cli_config=cli_config,
84
94
  config_path=config_path,
@@ -348,11 +358,16 @@ async def async_build_app_and_check_migrations(
348
358
  from amsdal.manager import AsyncAmsdalManager
349
359
 
350
360
  from amsdal_cli.commands.build.services.builder import AppBuilder
361
+
362
+ # Copy app.py BEFORE creating AppBuilder (which triggers settings initialization)
363
+ from amsdal_cli.commands.build.services.mixin import BuildMixin
351
364
  from amsdal_cli.utils.text import CustomConfirm
352
365
  from amsdal_cli.utils.text import rich_error
353
366
  from amsdal_cli.utils.text import rich_info
354
367
  from amsdal_cli.utils.text import rich_success
355
368
 
369
+ BuildMixin.build_app_config(app_source_path, output_path)
370
+
356
371
  app_builder = AppBuilder(
357
372
  cli_config=cli_config,
358
373
  config_path=config_path,
@@ -36,7 +36,7 @@ def _sync_run(cli_config: 'CliConfig', app_source_path: Path, mode: WorkerMode)
36
36
  manager.setup()
37
37
  manager.authenticate()
38
38
 
39
- for transaction in TransactionApi().get_transactions().rows:
39
+ for transaction in TransactionApi().get_transactions().rows: # type: ignore[attr-defined]
40
40
  TransactionExecutionService().get_transaction_func(transaction.title)
41
41
 
42
42
  _init_function()
@@ -72,7 +72,7 @@ async def _async_run(cli_config: 'CliConfig', app_source_path: Path, mode: Worke
72
72
  await manager.setup()
73
73
  manager.authenticate()
74
74
 
75
- for transaction in TransactionApi().get_transactions().rows:
75
+ for transaction in TransactionApi().get_transactions().rows: # type: ignore[attr-defined]
76
76
  TransactionExecutionService().get_transaction_func(transaction.title)
77
77
 
78
78
  async def _shutdown_function(**kwargs: Any) -> None: # noqa: ARG001
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amsdal_cli
3
- Version: 0.6.0
3
+ Version: 0.6.1
4
4
  Summary: CLI for AMSDAL framework
5
5
  Project-URL: Documentation, https://pypi.org/project/amsdal_cli/#readme
6
6
  Project-URL: Issues, https://pypi.org/project/amsdal_cli/
@@ -122,7 +122,7 @@ Classifier: Programming Language :: Python :: 3.13
122
122
  Classifier: Programming Language :: Python :: Implementation :: CPython
123
123
  Classifier: Programming Language :: Python :: Implementation :: PyPy
124
124
  Requires-Python: <3.14,>=3.11
125
- Requires-Dist: amsdal-server>=0.5.0
125
+ Requires-Dist: amsdal-server==0.6.*
126
126
  Requires-Dist: click<8.2.0
127
127
  Requires-Dist: faker==27.*
128
128
  Requires-Dist: gitpython~=3.1
@@ -1,5 +1,5 @@
1
1
  amsdal_cli/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=uHJlGG0D4tbpUi8cq-497NNO9ltQ67a5448k-T14HTw,68241
2
- amsdal_cli/__about__.py,sha256=L9I3u2z3UsLTmwP99KJ8u9WMvIGgp6dH1-e7eZsHvlE,124
2
+ amsdal_cli/__about__.py,sha256=YHEwqqLWJ20SccNufkR8exZTESaK1Zt05BWhqCah-Kc,124
3
3
  amsdal_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  amsdal_cli/app.py,sha256=_ucuLT5ospf1ifFKEG0IMfVnxKjnvPUQ4iMhkvOfCrc,466
5
5
  amsdal_cli/main.py,sha256=LtH-BD1eJrAUecjKzC8Gx7kYFUstOMH1erdeJUVqFB8,144
@@ -42,8 +42,8 @@ amsdal_cli/commands/build/schemas/mixins/enrich_schemas_mixin.py,sha256=4TvvIuev
42
42
  amsdal_cli/commands/build/schemas/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  amsdal_cli/commands/build/schemas/utils/merger.py,sha256=8dlSV3qgGAGNbOtGGx8zQ7yC99dihxg8JwPHMDboU2w,2229
44
44
  amsdal_cli/commands/build/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- amsdal_cli/commands/build/services/builder.py,sha256=MR3wQ0CEv7FOQDQboTtUHUHJ1pqt7kjdNKfJ8BN9mp0,3402
46
- amsdal_cli/commands/build/services/mixin.py,sha256=1hC2nYEgoTIrxJaC1oa4srIARCCWwbAkpGnAdvOBbOY,6565
45
+ amsdal_cli/commands/build/services/builder.py,sha256=tNh8ABM6pUAiGh85smX6fLCnrWnJtTHoyS1N_g_wnm4,3608
46
+ amsdal_cli/commands/build/services/mixin.py,sha256=tRy0fBgu_NpSp1JWoDYmmx6ZRoPRe2Y_zGzBDmbkYwI,7430
47
47
  amsdal_cli/commands/build/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
48
  amsdal_cli/commands/build/utils/build_config_file.py,sha256=65s3rP_nnr5FJLQlYStGF2JNYxExq5tWZvIU_h8Ae7I,2009
49
49
  amsdal_cli/commands/ci_cd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -122,7 +122,7 @@ amsdal_cli/commands/generate/command.py,sha256=j6CGiZ_7st-A6qpMTA8XYl15UeONopauQ
122
122
  amsdal_cli/commands/generate/enums.py,sha256=f53uKOxTKn6-z169NZmkTn_dtCNO1RE07hBes_1cZ4U,3685
123
123
  amsdal_cli/commands/generate/sub_commands/__init__.py,sha256=afAyY3hWNb6a4e3lapQX-GsR1SB6EHZi9hwtsWzrPKY,1077
124
124
  amsdal_cli/commands/generate/sub_commands/generate_external_models.py,sha256=QH54RuiRyzFzmiEQsw7mbLk1d_vSbLAPqp4F-oJGwD8,11515
125
- amsdal_cli/commands/generate/sub_commands/generate_frontend_config.py,sha256=SkEzx7-mWgrPINwPXGRmYO1SVA0RZojOd6BZFQRmG0Q,2574
125
+ amsdal_cli/commands/generate/sub_commands/generate_frontend_config.py,sha256=j3tzTESUlZAeP0KuYCnvHmqlgoLvYDvlGXpBKsg5jJE,2628
126
126
  amsdal_cli/commands/generate/sub_commands/generate_hook.py,sha256=C0Oy5VokM3BXPq33Kknjvtjwd7hdfSxQFKxJcHu_bgg,1738
127
127
  amsdal_cli/commands/generate/sub_commands/generate_model.py,sha256=yjZEfadjDf2zRkXh9z5RWYqnO9vFVu8tzVQzxWZPWY4,5885
128
128
  amsdal_cli/commands/generate/sub_commands/generate_modifier.py,sha256=NyN7vMTBGaQv6u815WT1lqAlqI4xP1AmIZWq5edZ-5g,1426
@@ -163,7 +163,7 @@ amsdal_cli/commands/migrations/sub_commands/make_contrib.py,sha256=G3w5fRKR16-tK
163
163
  amsdal_cli/commands/new/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
164
  amsdal_cli/commands/new/command.py,sha256=B-chjS_TAEzH4CIr_vBtxFWn7Y4xWm8vpUetCf1lwKo,3233
165
165
  amsdal_cli/commands/new/templates/.amsdal-cli,sha256=PdXPovcT8AfPhqwDLI_4EWFYAS6e3J5JcsHVityBdF8,304
166
- amsdal_cli/commands/new/templates/.gitignore,sha256=u7cZFs8VyeZahreeYtkoRnAQduko23Lz4SoGCyMSOQc,153
166
+ amsdal_cli/commands/new/templates/.gitignore,sha256=A_4VUuqcntOAZ_z4B_MBJwUoStMZe1HU_lWOnk07EG8,161
167
167
  amsdal_cli/commands/new/templates/README.md,sha256=SM_MPq4HNWIxo2B4HJmfM1kfJYawW4YneuZxFqZnDo4,21552
168
168
  amsdal_cli/commands/new/templates/config.yml,sha256=89BTeSrzPO92JTCRS8N03DXY0kdw-uMWCStLHzNaeRw,640
169
169
  amsdal_cli/commands/new/templates/requirements.txt,sha256=05SVW1yzgvHwir231NIEgeCguZovGJyJKtHA1uFC3aA,129
@@ -196,13 +196,13 @@ amsdal_cli/commands/restore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
196
196
  amsdal_cli/commands/restore/command.py,sha256=yrtF0y3HHmv6RXrMKQCnUIDhEQecDWY7THI_erh6WtA,35976
197
197
  amsdal_cli/commands/restore/enums.py,sha256=oeEs9qTEsW4xgi6gAylFfRD5loFId416wwGkNhsSEkU,308
198
198
  amsdal_cli/commands/serve/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
- amsdal_cli/commands/serve/command.py,sha256=r27g3mw-P77LfP43ygTk9QbxN7HklWbzrlosjO4hB5c,6537
200
- amsdal_cli/commands/serve/utils.py,sha256=ErwuQFRJxo32Y7uLgxtUXYdbPlDCYsh8OfAkqWSblrA,18475
199
+ amsdal_cli/commands/serve/command.py,sha256=rJutMivkGrDKgFhEp0lyuCiNqttbEeXor4J-opoVgAQ,7033
200
+ amsdal_cli/commands/serve/utils.py,sha256=LpdjAKC_qrrkftpLcGl3b7vAdVAbvi6C8pWxnegwnHo,19041
201
201
  amsdal_cli/commands/serve/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
202
  amsdal_cli/commands/serve/filters/models_watch_filter.py,sha256=cnoAjrn-PYDAFq5MtgbQ6QeCvJJmcNisVNlA8QtFv4A,170
203
203
  amsdal_cli/commands/serve/filters/static_files_watch_filter.py,sha256=jKAF5RHq1au2v0kcOrqaAHP1x5IUjt_KgZURJLm29Tw,552
204
204
  amsdal_cli/commands/serve/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
- amsdal_cli/commands/serve/services/supervisor.py,sha256=YAt8pT8qev5DN_u8zpiEsDvAKJpPdoqczxAwSSlSJpU,15216
205
+ amsdal_cli/commands/serve/services/supervisor.py,sha256=B31P9owFjcAQ49fUEoSCZrbfk36ajVUZbr0qJMwTqo4,15541
206
206
  amsdal_cli/commands/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
207
  amsdal_cli/commands/tests/command.py,sha256=_UYFGYgd9VDJMjLRSPSudTh2DQuZLV3yk1fZekPlJE0,3800
208
208
  amsdal_cli/commands/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -215,7 +215,7 @@ amsdal_cli/commands/worker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
215
215
  amsdal_cli/commands/worker/app.py,sha256=X0irXtvo7Gq2g-tsRTPxi9KkgM38DsIvtDMaeGnqZJY,148
216
216
  amsdal_cli/commands/worker/command.py,sha256=e3uL38VYCp71-XsVYvE1xlt2FqhP54ujlhVFhK7_9Jw,186
217
217
  amsdal_cli/commands/worker/sub_commands/__init__.py,sha256=5AVFexW1UpfPpfNfYoioA6Pix1uiRSEjVEa-_wP89j4,100
218
- amsdal_cli/commands/worker/sub_commands/run.py,sha256=lOqH_1VWdF1fmzE5-KHIvaxLTnPaGxs6qBDlY9ezh3Q,4299
218
+ amsdal_cli/commands/worker/sub_commands/run.py,sha256=vPtkgi-A9c-_-w4KLjwaUDFLmp-vPw-zm4c5smu_VdM,4359
219
219
  amsdal_cli/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
220
  amsdal_cli/config/main.py,sha256=leYnDJlzhzIAYWOH65QhPLu4zk3ii26ogMBWGYx3uqM,2874
221
221
  amsdal_cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -232,8 +232,8 @@ amsdal_cli/utils/vcs/base.py,sha256=jC05ExJZDnyHAsW7_4IDf8gQcYgK4dXq3zNlFIX66T4,
232
232
  amsdal_cli/utils/vcs/dummy.py,sha256=Lk8MT-b0YlHHUsiXsq5cvmPwcl4jTYdo8piN5_C8ORA,434
233
233
  amsdal_cli/utils/vcs/enums.py,sha256=Y18zEM77EGgjmmcO_3qzLHrALrTnXAXngoA0v60PhIw,70
234
234
  amsdal_cli/utils/vcs/git.py,sha256=xHynbZcV6p2D3RFCwu1MGGpV9D7eK-pGUtO8kVexTQM,1269
235
- amsdal_cli-0.6.0.dist-info/METADATA,sha256=5yqUFLsn4zXwG7ONR9lrpCg2Aip5ebQt1ggJhytjuMo,57164
236
- amsdal_cli-0.6.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
237
- amsdal_cli-0.6.0.dist-info/entry_points.txt,sha256=GC-8LZsD3W--Pd9_gD4W3tw3ZZyPbSvkZ-qWc9Fx0NI,47
238
- amsdal_cli-0.6.0.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
239
- amsdal_cli-0.6.0.dist-info/RECORD,,
235
+ amsdal_cli-0.6.1.dist-info/METADATA,sha256=xFzCW9o14ZYSANwEZS9vYzkc7ofjkqZYKX5QVQ_faqk,57164
236
+ amsdal_cli-0.6.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
237
+ amsdal_cli-0.6.1.dist-info/entry_points.txt,sha256=GC-8LZsD3W--Pd9_gD4W3tw3ZZyPbSvkZ-qWc9Fx0NI,47
238
+ amsdal_cli-0.6.1.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
239
+ amsdal_cli-0.6.1.dist-info/RECORD,,