stoobly-agent 1.5.9__py3-none-any.whl → 1.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.
Files changed (67) hide show
  1. stoobly_agent/__init__.py +1 -1
  2. stoobly_agent/app/cli/scaffold/constants.py +4 -2
  3. stoobly_agent/app/cli/scaffold/docker/service/builder.py +3 -3
  4. stoobly_agent/app/cli/scaffold/templates/app/.Dockerfile.context +1 -1
  5. stoobly_agent/app/cli/scaffold/templates/app/.Makefile +12 -12
  6. stoobly_agent/app/cli/scaffold/templates/app/build/.docker-compose.base.yml +6 -4
  7. stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/configure +3 -1
  8. stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/init +3 -1
  9. stoobly_agent/app/cli/scaffold/templates/app/build/record/bin/init +3 -1
  10. stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/configure +3 -1
  11. stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/init +3 -1
  12. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml +4 -2
  13. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/configure +3 -1
  14. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init +3 -1
  15. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/configure +3 -1
  16. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init +3 -1
  17. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/configure +3 -1
  18. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init +3 -1
  19. stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/.docker-compose.exec.yml +1 -1
  20. stoobly_agent/app/cli/scaffold/templates/{app/build/record/bin → build/services/build/mock}/.configure +5 -1
  21. stoobly_agent/app/cli/scaffold/templates/{app/build/record/bin → build/services/build/mock}/.init +5 -1
  22. stoobly_agent/app/cli/scaffold/templates/build/services/build/record/.configure +12 -0
  23. stoobly_agent/app/cli/scaffold/templates/build/services/build/record/.init +12 -0
  24. stoobly_agent/app/cli/scaffold/templates/build/services/build/test/.configure +12 -0
  25. stoobly_agent/app/cli/scaffold/templates/build/services/build/test/.init +12 -0
  26. stoobly_agent/app/cli/scaffold/templates/{app/entrypoint/test/bin → build/services/entrypoint/mock}/.configure +4 -1
  27. stoobly_agent/app/cli/scaffold/templates/build/services/entrypoint/mock/.init +10 -0
  28. stoobly_agent/app/cli/scaffold/templates/{app/entrypoint/record/bin → build/services/entrypoint/record}/.configure +4 -1
  29. stoobly_agent/app/cli/scaffold/templates/build/services/entrypoint/record/.init +10 -0
  30. stoobly_agent/app/cli/scaffold/templates/{app/entrypoint/mock/bin → build/services/entrypoint/test}/.configure +4 -1
  31. stoobly_agent/app/cli/scaffold/templates/build/services/entrypoint/test/.init +10 -0
  32. stoobly_agent/app/cli/scaffold/templates/{workflow/record/bin → build/workflows/mock}/.configure +1 -1
  33. stoobly_agent/app/cli/scaffold/templates/{workflow/mock/bin → build/workflows/mock}/.init +1 -1
  34. stoobly_agent/app/cli/scaffold/templates/{workflow/test/bin → build/workflows/record}/.configure +1 -1
  35. stoobly_agent/app/cli/scaffold/templates/{workflow/record/bin → build/workflows/record}/.init +1 -1
  36. stoobly_agent/app/cli/scaffold/templates/{workflow/mock/bin → build/workflows/test}/.configure +1 -1
  37. stoobly_agent/app/cli/scaffold/templates/{workflow/test/bin → build/workflows/test}/.init +1 -1
  38. stoobly_agent/app/cli/scaffold/workflow_command.py +3 -2
  39. stoobly_agent/app/cli/scaffold/workflow_config.py +47 -0
  40. stoobly_agent/app/cli/scaffold/workflow_create_command.py +6 -3
  41. stoobly_agent/app/cli/scaffold/workflow_run_command.py +30 -5
  42. stoobly_agent/app/cli/scaffold_cli.py +1 -1
  43. stoobly_agent/test/app/models/schemas/.stoobly/db/VERSION +1 -1
  44. {stoobly_agent-1.5.9.dist-info → stoobly_agent-1.6.1.dist-info}/METADATA +1 -1
  45. {stoobly_agent-1.5.9.dist-info → stoobly_agent-1.6.1.dist-info}/RECORD +60 -59
  46. stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/.configure +0 -8
  47. stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/.init +0 -8
  48. stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/.configure +0 -8
  49. stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/.init +0 -8
  50. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init +0 -7
  51. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init +0 -7
  52. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init +0 -7
  53. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.create +0 -0
  54. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.delete +0 -0
  55. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.disable +0 -0
  56. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.down +0 -0
  57. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.enable +0 -0
  58. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.list +0 -0
  59. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.logs +0 -0
  60. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.mkcert +0 -0
  61. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.reset +0 -0
  62. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.services +0 -0
  63. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.snapshot +0 -0
  64. /stoobly_agent/app/cli/scaffold/templates/{app/stoobly-ui/exec/bin → build/workflows/exec}/.up +0 -0
  65. {stoobly_agent-1.5.9.dist-info → stoobly_agent-1.6.1.dist-info}/LICENSE +0 -0
  66. {stoobly_agent-1.5.9.dist-info → stoobly_agent-1.6.1.dist-info}/WHEEL +0 -0
  67. {stoobly_agent-1.5.9.dist-info → stoobly_agent-1.6.1.dist-info}/entry_points.txt +0 -0
stoobly_agent/__init__.py CHANGED
@@ -1,2 +1,2 @@
1
1
  COMMAND = 'stoobly-agent'
2
- VERSION = '1.5.9'
2
+ VERSION = '1.6.1'
@@ -46,12 +46,14 @@ WORKFLOW_CONTAINER_TEMPLATE = '{service_name}.{container}'
46
46
  WORKFLOW_CONTAINER_CONFIGURE_TEMPLATE = '{service_name}.' + WORKFLOW_CONTAINER_CONFIGURE
47
47
  WORKFLOW_CONTAINER_INIT_TEMPLATE = '{service_name}.' + WORKFLOW_CONTAINER_INIT
48
48
  WORKFLOW_CONTAINER_PROXY_TEMPLATE = '{service_name}.' + WORKFLOW_CONTAINER_PROXY
49
+ WORKFLOW_EXEC_TYPE = 'exec'
49
50
  WORKFLOW_MOCK_TYPE = 'mock'
50
51
  WORKFLOW_NAME = '${WORKFLOW_NAME}'
51
52
  WORKFLOW_NAME_ENV = 'WORKFLOW_NAME'
52
53
  WORKFLOW_NAMESPACE_ENV = 'WORKFLOW_NAMESPACE'
53
54
  WORKFLOW_RECORD_TYPE = 'record'
55
+ WORKFLOW_TEMPLATE = '${WORKFLOW_TEMPLATE}'
56
+ WORKFLOW_TEMPLATE_ENV = 'WORKFLOW_TEMPLATE'
54
57
  WORKFLOW_TEST_TYPE = 'test'
55
58
 
56
- WORKFLOW_TEMPLATE = Literal[WORKFLOW_MOCK_TYPE, WORKFLOW_RECORD_TYPE, WORKFLOW_TEST_TYPE]
57
-
59
+ WORKFLOW_TEMPLATE_OPTION = Literal[WORKFLOW_MOCK_TYPE, WORKFLOW_RECORD_TYPE, WORKFLOW_TEST_TYPE]
@@ -2,7 +2,7 @@ import os
2
2
  import pdb
3
3
 
4
4
  from ...app_config import AppConfig
5
- from ...constants import SERVICE_HOSTNAME, SERVICE_HOSTNAME_ENV, SERVICE_NAME, STOOBLY_HOME_DIR, WORKFLOW_NAME
5
+ from ...constants import SERVICE_HOSTNAME, SERVICE_HOSTNAME_ENV, WORKFLOW_TEMPLATE
6
6
  from ...service_config import ServiceConfig
7
7
  from ..app_builder import AppBuilder
8
8
  from ..builder import Builder
@@ -92,7 +92,7 @@ class ServiceBuilder(Builder):
92
92
  def build_init_base(self):
93
93
  environment = {}
94
94
  self.with_service(self.init_base, {
95
- 'command': ['bin/.init'],
95
+ 'command': [f"/usr/local/bin/workflows/{WORKFLOW_TEMPLATE}/.init", 'bin/init'],
96
96
  'environment': environment,
97
97
  'extends': {
98
98
  'file': os.path.relpath(self.app_builder.compose_file_path, self.dir_path),
@@ -103,7 +103,7 @@ class ServiceBuilder(Builder):
103
103
  def build_configure_base(self):
104
104
  environment = {}
105
105
  self.with_service(self.configure_base, {
106
- 'command': ['bin/.configure'],
106
+ 'command': [f"/usr/local/bin/workflows/{WORKFLOW_TEMPLATE}/.configure", 'bin/configure'],
107
107
  'environment': environment,
108
108
  'extends': {
109
109
  'file': os.path.relpath(self.app_builder.compose_file_path, self.dir_path),
@@ -1,4 +1,4 @@
1
- FROM stoobly/agent:1.5
1
+ FROM stoobly/agent:1.6
2
2
 
3
3
  ARG USER_ID
4
4
 
@@ -70,7 +70,7 @@ ca-cert/install: stoobly/install
70
70
  fi \
71
71
  fi
72
72
  certs:
73
- @export EXEC_COMMAND=bin/.mkcert && \
73
+ @export EXEC_COMMAND=.mkcert && \
74
74
  $(stoobly_exec)
75
75
  command/install:
76
76
  $(eval COMMAND=install)
@@ -91,10 +91,10 @@ nameservers: tmpdir
91
91
  exit 1; \
92
92
  fi
93
93
  intercept/disable:
94
- @export EXEC_COMMAND=bin/.disable && \
94
+ @export EXEC_COMMAND=.disable && \
95
95
  $(stoobly_exec)
96
96
  intercept/enable:
97
- @export EXEC_COMMAND=bin/.enable && \
97
+ @export EXEC_COMMAND=.enable && \
98
98
  export EXEC_ARGS=$(scenario_key) && \
99
99
  $(stoobly_exec)
100
100
  mock: workflow/mock ca-cert/install workflow/hostname/install nameservers workflow/up
@@ -117,30 +117,30 @@ record/services: workflow/record workflow/services
117
117
  record/logs: workflow/record workflow/logs
118
118
  scenario/create:
119
119
  # Create a scenario
120
- @export EXEC_COMMAND=bin/.create && \
120
+ @export EXEC_COMMAND=.create && \
121
121
  export EXEC_OPTIONS="$(options)" && \
122
122
  export EXEC_ARGS="$(name)" && \
123
123
  $(stoobly_exec)
124
124
  scenario/delete:
125
125
  # Delete a scenario
126
- @export EXEC_COMMAND=bin/.delete && \
126
+ @export EXEC_COMMAND=.delete && \
127
127
  export EXEC_OPTIONS="$(options)" && \
128
128
  export EXEC_ARGS="$(key)" && \
129
129
  $(stoobly_exec)
130
130
  scenario/list:
131
131
  # List scenarios
132
- @export EXEC_COMMAND=bin/.list && \
132
+ @export EXEC_COMMAND=.list && \
133
133
  export EXEC_OPTIONS="$(options)" && \
134
134
  $(stoobly_exec)
135
135
  scenario/reset:
136
136
  # Resets a scenario to its last snapshot
137
- @export EXEC_COMMAND=bin/.reset && \:
137
+ @export EXEC_COMMAND=.reset && \:
138
138
  export EXEC_OPTIONS="$(options)" && \
139
139
  export EXEC_ARGS="$(key)" && \
140
140
  $(stoobly_exec)
141
141
  scenario/snapshot:
142
142
  # Create committable files for a scenario
143
- @export EXEC_COMMAND=bin/.snapshot && \
143
+ @export EXEC_COMMAND=.snapshot && \
144
144
  export EXEC_OPTIONS="$(options)" && \
145
145
  export EXEC_ARGS="$(key)" && \
146
146
  $(stoobly_exec)
@@ -156,7 +156,7 @@ test/down: workflow/test workflow/down exec/down
156
156
  tmpdir:
157
157
  @mkdir -p $(app_tmp_dir)
158
158
  workflow/down:
159
- @export EXEC_COMMAND=bin/.down && \
159
+ @export EXEC_COMMAND=.down && \
160
160
  export EXEC_OPTIONS="$(user_id_option) $(workflow_run_options) $(options)" && \
161
161
  export EXEC_ARGS="$(WORKFLOW)" && \
162
162
  $(stoobly_exec_run) && \
@@ -176,7 +176,7 @@ workflow/hostname: stoobly/install
176
176
  workflow/hostname/install: command/install workflow/hostname
177
177
  workflow/hostname/uninstall: command/uninstall workflow/hostname
178
178
  workflow/logs:
179
- @export EXEC_COMMAND=bin/.logs && \
179
+ @export EXEC_COMMAND=.logs && \
180
180
  export EXEC_OPTIONS="$(workflow_run_options) $(options)" && \
181
181
  export EXEC_ARGS="$(WORKFLOW)" && \
182
182
  $(stoobly_exec_run) && \
@@ -186,14 +186,14 @@ workflow/mock:
186
186
  workflow/record:
187
187
  $(eval WORKFLOW=record)
188
188
  workflow/services:
189
- @export EXEC_COMMAND=bin/.services && \
189
+ @export EXEC_COMMAND=.services && \
190
190
  export EXEC_OPTIONS="$(workflow_service_options) $(options)" && \
191
191
  export EXEC_ARGS="$(WORKFLOW)" && \
192
192
  $(stoobly_exec_run)
193
193
  workflow/test:
194
194
  $(eval WORKFLOW=test)
195
195
  workflow/up:
196
- @export EXEC_COMMAND=bin/.up && \
196
+ @export EXEC_COMMAND=.up && \
197
197
  export EXEC_OPTIONS="$(user_id_option) $(workflow_up_options) $(workflow_run_options) $(options)" && \
198
198
  export EXEC_ARGS="$(WORKFLOW)" && \
199
199
  $(stoobly_exec_run) && \
@@ -1,14 +1,16 @@
1
1
  services:
2
- build.init_base:
2
+ build.configure_base:
3
3
  command:
4
- - bin/.init
4
+ - /usr/local/bin/services/${SERVICE_NAME}/${WORKFLOW_TEMPLATE}/.configure
5
+ - bin/configure
5
6
  extends:
6
7
  file: ../.docker-compose.base.yml
7
8
  service: context_base
8
9
  working_dir: /home/stoobly/.stoobly/docker/build/${WORKFLOW_NAME}
9
- build.configure_base:
10
+ build.init_base:
10
11
  command:
11
- - bin/.configure
12
+ - /usr/local/bin/services/${SERVICE_NAME}/${WORKFLOW_TEMPLATE}/.init
13
+ - bin/init
12
14
  extends:
13
15
  file: ../.docker-compose.base.yml
14
16
  service: context_base
@@ -1 +1,3 @@
1
- #!/bin/bash
1
+ #!/bin/bash
2
+
3
+ # Add custom configuration here
@@ -1 +1,3 @@
1
- #! /bin/bash
1
+ #! /bin/bash
2
+
3
+ # Add custom initialization here
@@ -1 +1,3 @@
1
- #! /bin/bash
1
+ #! /bin/bash
2
+
3
+ # Add custom initialization here
@@ -1 +1,3 @@
1
- #!/bin/bash
1
+ #!/bin/bash
2
+
3
+ # Add custom configuration here
@@ -1 +1,3 @@
1
- #! /bin/bash
1
+ #! /bin/bash
2
+
3
+ # Add custom initialization here
@@ -2,7 +2,8 @@ networks: {}
2
2
  services:
3
3
  entrypoint.configure_base:
4
4
  command:
5
- - bin/.configure
5
+ - /usr/local/bin/services/${SERVICE_NAME}/${WORKFLOW_TEMPLATE}/.configure
6
+ - bin/configure
6
7
  environment: {}
7
8
  extends:
8
9
  file: ../.docker-compose.base.yml
@@ -10,7 +11,8 @@ services:
10
11
  working_dir: /home/stoobly/.stoobly/docker/entrypoint/${WORKFLOW_NAME}
11
12
  entrypoint.init_base:
12
13
  command:
13
- - bin/.init
14
+ - /usr/local/bin/services/${SERVICE_NAME}/${WORKFLOW_TEMPLATE}/.init
15
+ - bin/init
14
16
  environment: {}
15
17
  extends:
16
18
  file: ../.docker-compose.base.yml
@@ -1 +1,3 @@
1
- #!/bin/bash
1
+ #!/bin/bash
2
+
3
+ # Add custom configuration here
@@ -1 +1,3 @@
1
- #! /bin/bash
1
+ #! /bin/bash
2
+
3
+ # Add custom initialization here
@@ -1 +1,3 @@
1
- #!/bin/bash
1
+ #!/bin/bash
2
+
3
+ # Add custom configuration here
@@ -1 +1,3 @@
1
- #! /bin/bash
1
+ #! /bin/bash
2
+
3
+ # Add custom initialization here
@@ -1 +1,3 @@
1
- #!/bin/bash
1
+ #!/bin/bash
2
+
3
+ # Add custom configuration here
@@ -1 +1,3 @@
1
- #! /bin/bash
1
+ #! /bin/bash
2
+
3
+ # Add custom initialization here
@@ -1,6 +1,6 @@
1
1
  services:
2
2
  stoobly_ui.command:
3
- command: ['.stoobly/docker/stoobly-ui/exec/${EXEC_COMMAND}', '${EXEC_ARGS}']
3
+ command: ['/usr/local/bin/workflows/exec/${EXEC_COMMAND}', '${EXEC_ARGS}']
4
4
  environment:
5
5
  EXEC_OPTIONS: ${EXEC_OPTIONS}
6
6
  extends:
@@ -5,4 +5,8 @@
5
5
 
6
6
  stoobly-agent config reset
7
7
 
8
- cd $(dirname -- "$0") && ./configure
8
+ entrypoint=$1
9
+
10
+ if [ -e "$entrypoint" ]; then
11
+ "$entrypoint"
12
+ fi
@@ -5,4 +5,8 @@
5
5
 
6
6
  stoobly-agent snapshot apply
7
7
 
8
- cd $(dirname -- "$0") && ./init
8
+ entrypoint=$1
9
+
10
+ if [ -e "$entrypoint" ]; then
11
+ "$entrypoint"
12
+ fi
@@ -0,0 +1,12 @@
1
+ #!/bin/bash
2
+
3
+ # This file was automatically generated. DO NOT EDIT.
4
+ # Any changes made to this file will be overwritten.
5
+
6
+ stoobly-agent config reset
7
+
8
+ entrypoint=$1
9
+
10
+ if [ -e "$entrypoint" ]; then
11
+ "$entrypoint"
12
+ fi
@@ -0,0 +1,12 @@
1
+ #!/bin/bash
2
+
3
+ # This file was automatically generated. DO NOT EDIT.
4
+ # Any changes made to this file will be overwritten.
5
+
6
+ stoobly-agent snapshot apply
7
+
8
+ entrypoint=$1
9
+
10
+ if [ -e "$entrypoint" ]; then
11
+ "$entrypoint"
12
+ fi
@@ -0,0 +1,12 @@
1
+ #!/bin/bash
2
+
3
+ # This file was automatically generated. DO NOT EDIT.
4
+ # Any changes made to this file will be overwritten.
5
+
6
+ stoobly-agent config reset
7
+
8
+ entrypoint=$1
9
+
10
+ if [ -e "$entrypoint" ]; then
11
+ "$entrypoint"
12
+ fi
@@ -0,0 +1,12 @@
1
+ #!/bin/bash
2
+
3
+ # This file was automatically generated. DO NOT EDIT.
4
+ # Any changes made to this file will be overwritten.
5
+
6
+ stoobly-agent snapshot apply
7
+
8
+ entrypoint=$1
9
+
10
+ if [ -e "$entrypoint" ]; then
11
+ "$entrypoint"
12
+ fi
@@ -1,12 +1,15 @@
1
1
  #!/bin/bash
2
2
 
3
+ # This file was automatically generated. DO NOT EDIT.
4
+ # Any changes made to this file will be overwritten.
5
+
3
6
  echo "Configuring intercept..."
4
7
  stoobly-agent intercept configure --mode mock --policy all
5
8
 
6
9
  echo "Enabling intercept..."
7
10
  stoobly-agent intercept enable
8
11
 
9
- entrypoint=$(dirname -- "$0")/configure
12
+ entrypoint=$1
10
13
 
11
14
  if [ -e "$entrypoint" ]; then
12
15
  "$entrypoint"
@@ -0,0 +1,10 @@
1
+ #!/bin/bash
2
+
3
+ # This file was automatically generated. DO NOT EDIT.
4
+ # Any changes made to this file will be overwritten.
5
+
6
+ entrypoint=$1
7
+
8
+ if [ -e "$entrypoint" ]; then
9
+ "$entrypoint"
10
+ fi
@@ -1,12 +1,15 @@
1
1
  #!/bin/bash
2
2
 
3
+ # This file was automatically generated. DO NOT EDIT.
4
+ # Any changes made to this file will be overwritten.
5
+
3
6
  echo "Configuring intercept..."
4
7
  stoobly-agent intercept configure --mode record --policy all
5
8
 
6
9
  echo "Disabling intercept..."
7
10
  stoobly-agent intercept disable
8
11
 
9
- entrypoint=$(dirname -- "$0")/configure
12
+ entrypoint=$1
10
13
 
11
14
  if [ -e "$entrypoint" ]; then
12
15
  "$entrypoint"
@@ -0,0 +1,10 @@
1
+ #!/bin/bash
2
+
3
+ # This file was automatically generated. DO NOT EDIT.
4
+ # Any changes made to this file will be overwritten.
5
+
6
+ entrypoint=$1
7
+
8
+ if [ -e "$entrypoint" ]; then
9
+ "$entrypoint"
10
+ fi
@@ -1,12 +1,15 @@
1
1
  #!/bin/bash
2
2
 
3
+ # This file was automatically generated. DO NOT EDIT.
4
+ # Any changes made to this file will be overwritten.
5
+
3
6
  echo "Configuring intercept..."
4
7
  stoobly-agent intercept configure --mode mock --policy all
5
8
 
6
9
  echo "Enabling intercept..."
7
10
  stoobly-agent intercept enable
8
11
 
9
- entrypoint=$(dirname -- "$0")/configure
12
+ entrypoint=$1
10
13
 
11
14
  if [ -e "$entrypoint" ]; then
12
15
  "$entrypoint"
@@ -0,0 +1,10 @@
1
+ #!/bin/bash
2
+
3
+ # This file was automatically generated. DO NOT EDIT.
4
+ # Any changes made to this file will be overwritten.
5
+
6
+ entrypoint=$1
7
+
8
+ if [ -e "$entrypoint" ]; then
9
+ "$entrypoint"
10
+ fi
@@ -3,7 +3,7 @@
3
3
  # This file was automatically generated. DO NOT EDIT.
4
4
  # Any changes made to this file will be overwritten.
5
5
 
6
- entrypoint=$(dirname -- "$0")/configure
6
+ entrypoint=$1
7
7
 
8
8
  if [ -e "$entrypoint" ]; then
9
9
  "$entrypoint"
@@ -7,7 +7,7 @@ if [ -n "$SERVICE_HOSTNAME" ] && [ "$SERVICE_SCHEME" = "https" ]; then
7
7
  stoobly-agent ca-cert mkcert $SERVICE_HOSTNAME
8
8
  fi
9
9
 
10
- entrypoint=$(dirname -- "$0")/init
10
+ entrypoint=$1
11
11
  if [ -e "$entrypoint" ]; then
12
12
  "$entrypoint"
13
13
  fi
@@ -3,7 +3,7 @@
3
3
  # This file was automatically generated. DO NOT EDIT.
4
4
  # Any changes made to this file will be overwritten.
5
5
 
6
- entrypoint=$(dirname -- "$0")/configure
6
+ entrypoint=$1
7
7
 
8
8
  if [ -e "$entrypoint" ]; then
9
9
  "$entrypoint"
@@ -7,7 +7,7 @@ if [ -n "$SERVICE_HOSTNAME" ] && [ "$SERVICE_SCHEME" = "https" ] ; then
7
7
  stoobly-agent ca-cert mkcert $SERVICE_HOSTNAME
8
8
  fi
9
9
 
10
- entrypoint=$(dirname -- "$0")/init
10
+ entrypoint=$1
11
11
  if [ -e "$entrypoint" ]; then
12
12
  "$entrypoint"
13
13
  fi
@@ -3,7 +3,7 @@
3
3
  # This file was automatically generated. DO NOT EDIT.
4
4
  # Any changes made to this file will be overwritten.
5
5
 
6
- entrypoint=$(dirname -- "$0")/configure
6
+ entrypoint=$1
7
7
 
8
8
  if [ -e "$entrypoint" ]; then
9
9
  "$entrypoint"
@@ -7,7 +7,7 @@ if [ -n "$SERVICE_HOSTNAME" ] && [ "$SERVICE_SCHEME" = "https" ]; then
7
7
  stoobly-agent ca-cert mkcert $SERVICE_HOSTNAME
8
8
  fi
9
9
 
10
- entrypoint=$(dirname -- "$0")/init
10
+ entrypoint=$1
11
11
  if [ -e "$entrypoint" ]; then
12
12
  "$entrypoint"
13
13
  fi
@@ -5,10 +5,10 @@ import yaml
5
5
  from stoobly_agent.lib.logger import Logger
6
6
 
7
7
  from .app import App
8
- from .config import Config
9
8
  from .constants import BIN_FOLDER_NAME, COMPOSE_TEMPLATE, CONFIG_FILE, ENV_FILE, PUBLIC_FOLDER_NAME
10
9
  from .docker.constants import DOCKER_COMPOSE_CUSTOM
11
10
  from .service_command import ServiceCommand
11
+ from .workflow_config import WorkflowConfig
12
12
 
13
13
  LOG_ID = 'WorkflowCommand'
14
14
 
@@ -18,6 +18,7 @@ class WorkflowCommand(ServiceCommand):
18
18
  super().__init__(app, **kwargs)
19
19
 
20
20
  self.__workflow_name = kwargs['workflow_name']
21
+ self.__config = WorkflowConfig(self.workflow_path, **kwargs)
21
22
 
22
23
  @property
23
24
  def bin_dir_path(self):
@@ -93,7 +94,7 @@ class WorkflowCommand(ServiceCommand):
93
94
 
94
95
  @property
95
96
  def workflow_config(self):
96
- return Config(self.workflow_config_path).read()
97
+ return self.__config
97
98
 
98
99
  @property
99
100
  def workflow_config_path(self):
@@ -0,0 +1,47 @@
1
+ # Wraps the .config.yml file in the workflow folder
2
+ import pdb
3
+
4
+ from .config import Config
5
+ from .constants import WORKFLOW_TEMPLATE_ENV
6
+
7
+ class WorkflowConfig(Config):
8
+
9
+ def __init__(self, dir: str, **kwargs):
10
+ super().__init__(dir)
11
+
12
+ self.__template = None
13
+
14
+ self.load()
15
+
16
+ if 'template' in kwargs:
17
+ self.__template = kwargs.get('template')
18
+
19
+ @property
20
+ def empty(self):
21
+ return not self.template
22
+
23
+ @property
24
+ def template(self):
25
+ return (self.__template or '').strip()
26
+
27
+ @template.setter
28
+ def template(self, v):
29
+ self.__template = v
30
+
31
+ def load(self, config = None):
32
+ config = config or self.read()
33
+
34
+ self.template = config.get(WORKFLOW_TEMPLATE_ENV)
35
+
36
+ def to_dict(self):
37
+ return {
38
+ 'template': self.template,
39
+ }
40
+
41
+ def write(self):
42
+ config = {}
43
+
44
+ if self.template:
45
+ config[WORKFLOW_TEMPLATE_ENV] = self.template
46
+
47
+ super().write(config)
@@ -5,7 +5,7 @@ import shutil
5
5
  from typing import List, TypedDict, Union
6
6
 
7
7
  from .app import App
8
- from .constants import WORKFLOW_MOCK_TYPE, WORKFLOW_RECORD_TYPE, WORKFLOW_TEST_TYPE, WORKFLOW_TEMPLATE
8
+ from .constants import WORKFLOW_MOCK_TYPE, WORKFLOW_RECORD_TYPE, WORKFLOW_TEST_TYPE, WORKFLOW_TEMPLATE_OPTION
9
9
  from .docker.service.builder import ServiceBuilder
10
10
  from .docker.workflow.mock_decorator import MockDecorator
11
11
  from .docker.workflow.reverse_proxy_decorator import ReverseProxyDecorator
@@ -18,7 +18,7 @@ CORE_WORKFLOWS = [WORKFLOW_MOCK_TYPE, WORKFLOW_RECORD_TYPE, WORKFLOW_TEST_TYPE]
18
18
  class BuildOptions(TypedDict):
19
19
  builder_class: type
20
20
  service_builder: ServiceBuilder
21
- template: WORKFLOW_TEMPLATE
21
+ template: WORKFLOW_TEMPLATE_OPTION
22
22
  workflow_decorators: List[Union[MockDecorator, ReverseProxyDecorator]]
23
23
 
24
24
  class WorkflowCreateCommand(WorkflowCommand):
@@ -54,10 +54,13 @@ class WorkflowCreateCommand(WorkflowCommand):
54
54
  workflow_builder = self.__write_docker_compose_file(**kwargs)
55
55
  self.__copy_templates(workflow_builder, kwargs.get('template'))
56
56
 
57
+ if not self.workflow_config.empty:
58
+ self.workflow_config.write()
59
+
57
60
  def build_workflow_templates_path(self, workflow_name: str):
58
61
  return os.path.join(self.workflow_templates_root_dir, workflow_name)
59
62
 
60
- def __copy_templates(self, workflow_builder: WorkflowBuilder, template: WORKFLOW_TEMPLATE = None):
63
+ def __copy_templates(self, workflow_builder: WorkflowBuilder, template: WORKFLOW_TEMPLATE_OPTION = None):
61
64
  if not template:
62
65
  templates_path = self.workflow_templates_path
63
66
  else:
@@ -3,6 +3,7 @@ import os
3
3
  import pdb
4
4
  import subprocess
5
5
  import re
6
+ import yaml
6
7
 
7
8
  from typing import TypedDict
8
9
 
@@ -12,7 +13,7 @@ from stoobly_agent.lib.logger import Logger
12
13
  from .app import App
13
14
  from .constants import (
14
15
  APP_DIR_ENV, APP_NETWORK_ENV, CA_CERTS_DIR_ENV, CERTS_DIR_ENV, CONTEXT_DIR_ENV, NAMESERVERS_FILE,
15
- SERVICE_DNS_ENV, SERVICE_NAME_ENV, USER_ID_ENV, WORKFLOW_NAME_ENV, WORKFLOW_NAMESPACE_ENV
16
+ SERVICE_DNS_ENV, SERVICE_NAME_ENV, USER_ID_ENV, WORKFLOW_NAME_ENV, WORKFLOW_NAMESPACE_ENV, WORKFLOW_TEMPLATE_ENV
16
17
  )
17
18
  from .docker.constants import DOCKERFILE_CONTEXT
18
19
  from .workflow_command import WorkflowCommand
@@ -137,9 +138,10 @@ class WorkflowRunCommand(WorkflowCommand):
137
138
  # Add docker compose file
138
139
  command_options.append(f"-f {os.path.relpath(self.compose_path, self.__current_working_dir)}")
139
140
 
141
+ can_build = False
142
+
140
143
  # Add custom docker compose file
141
144
  custom_services = self.custom_services
142
-
143
145
  if custom_services:
144
146
  uses_profile = False
145
147
  for service_name in custom_services:
@@ -153,10 +155,18 @@ class WorkflowRunCommand(WorkflowCommand):
153
155
  # TODO: looking into why warning does not print in docker
154
156
  Logger.instance(LOG_ID).error(f"Missing {self.workflow_name} profile in custom compose file")
155
157
 
156
- command_options.append(f"-f {os.path.relpath(self.custom_compose_path, self.__current_working_dir)}")
158
+ compose_file_path = os.path.relpath(self.custom_compose_path, self.__current_working_dir)
159
+ command_options.append(f"-f {compose_file_path}")
160
+
161
+ if self.__can_build(compose_file_path):
162
+ can_build = True
157
163
 
158
164
  if options.get('extra_compose_path'):
159
- command_options.append(f"-f {os.path.relpath(options['extra_compose_path'], self.__current_working_dir)}")
165
+ compose_file_path = os.path.relpath(options['extra_compose_path'], self.__current_working_dir)
166
+ command_options.append(f"-f {compose_file_path}")
167
+
168
+ if self.__can_build(compose_file_path):
169
+ can_build = True
160
170
 
161
171
  command_options.append(f"--profile {self.workflow_name}")
162
172
 
@@ -167,7 +177,7 @@ class WorkflowRunCommand(WorkflowCommand):
167
177
  command += command_options
168
178
  command.append('up')
169
179
 
170
- if options.get('build'):
180
+ if options.get('build') and can_build:
171
181
  command.append('--build')
172
182
 
173
183
  if options.get('pull'):
@@ -257,6 +267,7 @@ class WorkflowRunCommand(WorkflowCommand):
257
267
  _config[SERVICE_NAME_ENV] = self.service_name
258
268
  _config[USER_ID_ENV] = user_id or os.getuid()
259
269
  _config[WORKFLOW_NAME_ENV] = self.workflow_name
270
+ _config[WORKFLOW_TEMPLATE_ENV] = self.workflow_name
260
271
 
261
272
  if namespace:
262
273
  _config[WORKFLOW_NAMESPACE_ENV] = namespace
@@ -272,6 +283,20 @@ class WorkflowRunCommand(WorkflowCommand):
272
283
  WorkflowEnv(self.workflow_path).write(env_vars)
273
284
  return env_vars
274
285
 
286
+ def __can_build(self, compose_path: str) -> bool:
287
+ if not os.path.exists(compose_path):
288
+ return False
289
+
290
+ with open(compose_path, 'r') as f:
291
+ compose = yaml.safe_load(f)
292
+
293
+ services = compose.get('services', {})
294
+ for service_name, service in services.items():
295
+ if 'build' in service:
296
+ # Either build is a string (context) or dict (with context/Dockerfile)
297
+ return True
298
+ return False
299
+
275
300
  def __find_nameservers(self, dns_resolver: dns.resolver.Resolver):
276
301
  nameservers = dns_resolver.nameservers
277
302
 
@@ -226,7 +226,7 @@ def update(**kwargs):
226
226
  @click.option('--env', multiple=True, help='Specify an environment variable.')
227
227
  @click.option('--force', is_flag=True, help='Overwrite maintained scaffolded workflow files.')
228
228
  @click.option('--service', multiple=True, help='Specify the service(s) to create the workflow for.')
229
- @click.option('--template', type=click.Choice([WORKFLOW_MOCK_TYPE, WORKFLOW_RECORD_TYPE, WORKFLOW_TEST_TYPE]), help='Select which workflow to use as a template.')
229
+ @click.option('--template', required=True, type=click.Choice([WORKFLOW_MOCK_TYPE, WORKFLOW_RECORD_TYPE, WORKFLOW_TEST_TYPE]), help='Select which workflow to use as a template.')
230
230
  @click.argument('workflow_name')
231
231
  def create(**kwargs):
232
232
  __validate_app_dir(kwargs['app_dir_path'])
@@ -1 +1 @@
1
- 1.5.8
1
+ 1.6.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: stoobly-agent
3
- Version: 1.5.9
3
+ Version: 1.6.1
4
4
  Summary: Record, mock, and test HTTP(s) requests. CLI agent for Stoobly
5
5
  License: Apache-2.0
6
6
  Author: Matt Le
@@ -1,4 +1,4 @@
1
- stoobly_agent/__init__.py,sha256=qFqPw64rsr5m-G-KbM1i4k70UIxv4d2nVfpjBrAffEA,44
1
+ stoobly_agent/__init__.py,sha256=iNNlTNbNNPYIjvmJh6qArdUsWMo0EWYVZbrMdnBK2AA,44
2
2
  stoobly_agent/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  stoobly_agent/app/api/__init__.py,sha256=ctkB8KR-eXO0SFhj602huHiyvQ3PslFWd8fkcufgrAI,1000
4
4
  stoobly_agent/app/api/application_http_request_handler.py,sha256=Vvz53yB0bR7J-QqMAkLlhcZrA4P64ZEN7w8cMbgl6o0,5261
@@ -73,7 +73,7 @@ stoobly_agent/app/cli/scaffold/app_config.py,sha256=Gs-BynV1vY7_PpTOenn2mqc7lBIu
73
73
  stoobly_agent/app/cli/scaffold/app_create_command.py,sha256=sy4017eiir9MK0TEbTi1NyG9mhOGlenGGVnq0GsGUrQ,966
74
74
  stoobly_agent/app/cli/scaffold/command.py,sha256=aoTsdkkBzyu7TkVSMdNQQGk0Gj874jNgFcjR14y3TuM,254
75
75
  stoobly_agent/app/cli/scaffold/config.py,sha256=HZU5tkvr3dkPr4JMXZtrJlu2wxxO-134Em6jReFFcq0,688
76
- stoobly_agent/app/cli/scaffold/constants.py,sha256=Vn7TLVmxbiLOb7_wFDE4mlwkcr4vs0ZEgMxhS1ANizA,2084
76
+ stoobly_agent/app/cli/scaffold/constants.py,sha256=s6AR9p9fVsPukfcCQ2QIGPtPKMbXkGnZ5a5CJGwou5E,2205
77
77
  stoobly_agent/app/cli/scaffold/containerized_app.py,sha256=dAjn4RwcZV3aEL0POUmrbF_DC-r9h6s1zx7gT2t45v0,175
78
78
  stoobly_agent/app/cli/scaffold/docker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
79
  stoobly_agent/app/cli/scaffold/docker/app_builder.py,sha256=7z5pk5JKlRDHx2USxY-WurttLyyUkIVYfl34_u1x9dE,501
@@ -81,7 +81,7 @@ stoobly_agent/app/cli/scaffold/docker/builder.py,sha256=BQzjpDZmkUrii3VDcRCBXQko
81
81
  stoobly_agent/app/cli/scaffold/docker/constants.py,sha256=xfFBSF-1GQKNnUPTlz08Nm9HZDspUnvPvjwaLViQwVw,419
82
82
  stoobly_agent/app/cli/scaffold/docker/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
83
  stoobly_agent/app/cli/scaffold/docker/service/build_decorator.py,sha256=ZU7z4bkvdS3OK5O4fJhlA9_PNwnFtZW6t7vNF7V5obQ,1003
84
- stoobly_agent/app/cli/scaffold/docker/service/builder.py,sha256=a7jxzXEwHaNcnG281BrOtNlf5Nmc4Z97DQrm68xdCCU,3219
84
+ stoobly_agent/app/cli/scaffold/docker/service/builder.py,sha256=37VrkckPxTkIZTfrbml9Tp22teFhJu_pQYu6V7z40lE,3304
85
85
  stoobly_agent/app/cli/scaffold/docker/service/set_gateway_ports.py,sha256=MH71h24nX5lAd6xNfSjjNyw6PjBsAXv-3kOFEe86huk,1417
86
86
  stoobly_agent/app/cli/scaffold/docker/service/types.py,sha256=qB-yYHlu-PZDc0HYgTUvE5bWNpHxaSThC3JUG8okR1k,88
87
87
  stoobly_agent/app/cli/scaffold/docker/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -103,46 +103,34 @@ stoobly_agent/app/cli/scaffold/service_docker_compose.py,sha256=OMUN1-ujQYIZXxDv
103
103
  stoobly_agent/app/cli/scaffold/service_workflow.py,sha256=sQ_Edy_wGHKMXpD0DmhnOWkGEKz7gSgEGNI8f7aXOdg,444
104
104
  stoobly_agent/app/cli/scaffold/service_workflow_validate_command.py,sha256=iORyPZEQurgWVxrdMgkdD3VsCz3ar2D15dmyY3RoeKw,9904
105
105
  stoobly_agent/app/cli/scaffold/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
- stoobly_agent/app/cli/scaffold/templates/app/.Dockerfile.context,sha256=EVoSqGJH_H7Xw1Ktan5GH2SWaOXIr916NUpptr2hkiA,158
107
- stoobly_agent/app/cli/scaffold/templates/app/.Makefile,sha256=OvoE2bOAc5w1Nm_vwv6O75elYdojnNp2uABNwoF1g-g,8438
106
+ stoobly_agent/app/cli/scaffold/templates/app/.Dockerfile.context,sha256=xnUFSlP8YvEs04lTh1Jj_ggNcwyVjyzZjzF0Vh9pris,158
107
+ stoobly_agent/app/cli/scaffold/templates/app/.Makefile,sha256=zXj6WEYfFhgxB9BioUIlXxOAGI1gpDVWpc57K4AamE4,8390
108
108
  stoobly_agent/app/cli/scaffold/templates/app/.docker-compose.base.yml,sha256=6tFqXh3ine8vaD0FCL5TMoY5NjKx2wLUR8XpW3tJtew,245
109
109
  stoobly_agent/app/cli/scaffold/templates/app/Makefile,sha256=TEmPG7Bf0KZOnmfsgdzza3UdwcVMmM5Lj1YdLc4cgjA,79
110
110
  stoobly_agent/app/cli/scaffold/templates/app/build/.config.yml,sha256=8Wt8ZZ5irvBYYS44xGrR_EWlZDuXH9kyWmquzsh7s8g,19
111
- stoobly_agent/app/cli/scaffold/templates/app/build/.docker-compose.base.yml,sha256=H43dtzQkuwWeeB-XzwQNqdKqwS04Ph_Al8AVCOjxCkQ,420
111
+ stoobly_agent/app/cli/scaffold/templates/app/build/.docker-compose.base.yml,sha256=A9TI3J6182Bg9YH0GqetEqBz5_5Lf99XLHgHDuesK64,569
112
112
  stoobly_agent/app/cli/scaffold/templates/app/build/mock/.docker-compose.mock.yml,sha256=3DJ8LTq3QScaz0SA_tXQqJ0kljSCeqkPyDbhLOxBJvc,414
113
- stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/.configure,sha256=dix1ZVrqllsX6eYmQz7Jwslu-F3nA__IKmtRxb_KGSo,185
114
- stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/.init,sha256=4PElJS6sdbdDftf0R2An5bJ8mdOL6MnW5OasEbzh2S4,182
115
- stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
116
- stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
113
+ stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/configure,sha256=dEOGIKUKJf5kjOwJRdTgZkS0ZjmQHWVuAmKrWUjPij4,44
114
+ stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
117
115
  stoobly_agent/app/cli/scaffold/templates/app/build/record/.docker-compose.record.yml,sha256=hgPOxIInxGAzGr28-ytB4tVfmsqgpZdPMOpMRbV2R0g,418
118
- stoobly_agent/app/cli/scaffold/templates/app/build/record/bin/.configure,sha256=dix1ZVrqllsX6eYmQz7Jwslu-F3nA__IKmtRxb_KGSo,185
119
- stoobly_agent/app/cli/scaffold/templates/app/build/record/bin/.init,sha256=4PElJS6sdbdDftf0R2An5bJ8mdOL6MnW5OasEbzh2S4,182
120
116
  stoobly_agent/app/cli/scaffold/templates/app/build/record/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
121
- stoobly_agent/app/cli/scaffold/templates/app/build/record/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
117
+ stoobly_agent/app/cli/scaffold/templates/app/build/record/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
122
118
  stoobly_agent/app/cli/scaffold/templates/app/build/test/.docker-compose.test.yml,sha256=Rn_7qL1MVK1jNlRepSvNHH9_iFrlE86_aRxjwIim0mY,414
123
- stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/.configure,sha256=dix1ZVrqllsX6eYmQz7Jwslu-F3nA__IKmtRxb_KGSo,185
124
- stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/.init,sha256=4PElJS6sdbdDftf0R2An5bJ8mdOL6MnW5OasEbzh2S4,182
125
- stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
126
- stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
119
+ stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/configure,sha256=dEOGIKUKJf5kjOwJRdTgZkS0ZjmQHWVuAmKrWUjPij4,44
120
+ stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
127
121
  stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.config.yml,sha256=T9VQz6OwAQpKdIoFrnfKAxuX_to0c6EhuWRLKM34Sr4,22
128
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml,sha256=IHLz4eJyZDfQdKd8HG218Zc3egtOCK1IR8vfkMNJ0Ug,491
122
+ stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml,sha256=FzDOFouP61eSeklhjQ7qpsE8rSc8r3DuT8aytIiZwN8,640
129
123
  stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/.docker-compose.mock.yml,sha256=-YbHd6BrAlBpT8PYg8kOsq0GyDeZ3g_q8IB0B0rGluU,551
130
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.configure,sha256=dZNsKDou-7IS4yj8hYPudjoUIa8YlUbuE8pBkSIVtyE,255
131
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
132
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
133
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
124
+ stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/configure,sha256=dEOGIKUKJf5kjOwJRdTgZkS0ZjmQHWVuAmKrWUjPij4,44
125
+ stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
134
126
  stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/docker-compose.yml,sha256=Zh8h8yUqVXZMi_Y4aUPE48qw2DU-ONO4-rrSTh4E_Ts,591
135
127
  stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/.docker-compose.record.yml,sha256=aIcgjelss4V86lxS3-xN8j_2eR-0YkzhtN_b-g3Y0nE,555
136
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.configure,sha256=HKul_kbkob_EzSudYKRyQMk_YHE2jEBTarGHl3pCc18,259
137
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
138
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
139
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
128
+ stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/configure,sha256=dEOGIKUKJf5kjOwJRdTgZkS0ZjmQHWVuAmKrWUjPij4,44
129
+ stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
140
130
  stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/docker-compose.yml,sha256=5n4bZBHI9MtwBF55ugu1RTdwMy7T6SsYGQ_3sulFUj8,595
141
131
  stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/.docker-compose.test.yml,sha256=9-qPnSisun4adnrDcZsJiyeMjhIlCHBJap_cmdzUPVg,552
142
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.configure,sha256=dZNsKDou-7IS4yj8hYPudjoUIa8YlUbuE8pBkSIVtyE,255
143
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
144
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
145
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
132
+ stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/configure,sha256=dEOGIKUKJf5kjOwJRdTgZkS0ZjmQHWVuAmKrWUjPij4,44
133
+ stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
146
134
  stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/docker-compose.yml,sha256=E4gGJwHfnZoFo9-0vM17-Qg5LPjx7vIPpcz2K7eiZg0,591
147
135
  stoobly_agent/app/cli/scaffold/templates/app/gateway/.config.yml,sha256=XnLQZMzzMMIwVycjyPN5QXsmRztkTFAna1kIHYuDfJQ,19
148
136
  stoobly_agent/app/cli/scaffold/templates/app/gateway/.docker-compose.base.template.yml,sha256=bgBvyDhyehS75D2ObEi7sl9DLGV6U3c9JhCAncsvjq8,251
@@ -150,37 +138,49 @@ stoobly_agent/app/cli/scaffold/templates/app/gateway/mock/.docker-compose.mock.y
150
138
  stoobly_agent/app/cli/scaffold/templates/app/gateway/record/.docker-compose.record.yml,sha256=FvPqOUs1k6Vc-rncnpgiRTZeEQlrizmcGkT8a4HdvUE,226
151
139
  stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/.config.yml,sha256=XnLQZMzzMMIwVycjyPN5QXsmRztkTFAna1kIHYuDfJQ,19
152
140
  stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/.docker-compose.base.yml,sha256=bxrtZqf3YtaJCukzScslh5PgWC5q8xkGIP1wKJf33LA,111
153
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/.docker-compose.exec.yml,sha256=n-p_lIfsmpOJ78Zd0J2TdnV2M8hcn-K2TP9qOccbw1c,306
154
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.create,sha256=EZe84bLAKB-mrB9PGMx-amyMjp6x-ESUZKC8wxrWdLE,245
155
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.delete,sha256=RspRDQ7WT5jpN2o-6qXOlH-A2VpN4981pD4ZJljk9Rw,260
156
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.disable,sha256=xVf4Pk1RLvJm7Ff0rbGoWhYHPv0ME5e93fxS2yFqLnE,45
157
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.down,sha256=WtEjm2hJ01-1GGxRmmcUqZq7VjEe5JfZZKvm8TNhNEs,219
158
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.enable,sha256=sfUSPG4uHdXX95BLgivXQYLbsLBP2DjJIiSTXRtvXuY,188
159
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.list,sha256=BdX3ARC-Piuwk0vFzBrcxEwtHjdFncpORzqP-hP4IwE,84
160
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.logs,sha256=4CJVEVLn9VTQN9LAjOJpijwd_DZ5IuIXL1aFCYkelxk,178
161
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.mkcert,sha256=vyHaXmvy-7oL2RD8rIxwT-fdJS5kXmB0yHK5fRMo_cM,46
162
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.reset,sha256=_pvbLk-ektsCHEh_egDtd6c0sVqCPunwUWggarfoli0,238
163
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.services,sha256=sAbaKzBxNDXimyUNinB_a2Kt47vUCa0Kd3Z1QAp2GrU,161
164
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.snapshot,sha256=Kav1QNhKG7f0DBzc4-9dmxZMmmVTxmPqakT_W4kVYKk,241
165
- stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.up,sha256=S88O31UgsabaMvSwkQJjLF9C7mrFkyEk9x6JDE6qSXI,228
141
+ stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/.docker-compose.exec.yml,sha256=JN89sU5uRf6YqHvN_O63K8rwQIAPJHbhFDLFmuUjKNM,304
166
142
  stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/mock/.docker-compose.mock.yml,sha256=FnCn64DjxyAiB2P_1JUwFmXslMR961nVZHkYiEXytlg,232
167
143
  stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/record/.docker-compose.record.yml,sha256=t34FNYZboJSfrKnIB2oJ3UuE_mJaW77-hcbSn3sfWec,235
144
+ stoobly_agent/app/cli/scaffold/templates/build/services/build/mock/.configure,sha256=006exiS9OpKavy4fNWioWo0d8hrulQiWjaB3yXHdGig,212
145
+ stoobly_agent/app/cli/scaffold/templates/build/services/build/mock/.init,sha256=HRAXOsnAKhYw2giorsQA2Dvli4J5xJpvv-79yFgSszM,214
146
+ stoobly_agent/app/cli/scaffold/templates/build/services/build/record/.configure,sha256=006exiS9OpKavy4fNWioWo0d8hrulQiWjaB3yXHdGig,212
147
+ stoobly_agent/app/cli/scaffold/templates/build/services/build/record/.init,sha256=HRAXOsnAKhYw2giorsQA2Dvli4J5xJpvv-79yFgSszM,214
148
+ stoobly_agent/app/cli/scaffold/templates/build/services/build/test/.configure,sha256=006exiS9OpKavy4fNWioWo0d8hrulQiWjaB3yXHdGig,212
149
+ stoobly_agent/app/cli/scaffold/templates/build/services/build/test/.init,sha256=HRAXOsnAKhYw2giorsQA2Dvli4J5xJpvv-79yFgSszM,214
150
+ stoobly_agent/app/cli/scaffold/templates/build/services/entrypoint/mock/.configure,sha256=SKvht2K_3tW08K24rl8_j0jMYOhq1k-GsVwhoHwjxYA,337
151
+ stoobly_agent/app/cli/scaffold/templates/build/services/entrypoint/mock/.init,sha256=xWJGhCKQejtVLFAOEZMWnaCeGAc9tuqEh_WsG3xfA_0,184
152
+ stoobly_agent/app/cli/scaffold/templates/build/services/entrypoint/record/.configure,sha256=dnbPZUrYZDCEx0MxhIsrY-lTgH_9tN_Iixy3XrPIW8w,341
153
+ stoobly_agent/app/cli/scaffold/templates/build/services/entrypoint/record/.init,sha256=xWJGhCKQejtVLFAOEZMWnaCeGAc9tuqEh_WsG3xfA_0,184
154
+ stoobly_agent/app/cli/scaffold/templates/build/services/entrypoint/test/.configure,sha256=SKvht2K_3tW08K24rl8_j0jMYOhq1k-GsVwhoHwjxYA,337
155
+ stoobly_agent/app/cli/scaffold/templates/build/services/entrypoint/test/.init,sha256=xWJGhCKQejtVLFAOEZMWnaCeGAc9tuqEh_WsG3xfA_0,184
156
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.create,sha256=EZe84bLAKB-mrB9PGMx-amyMjp6x-ESUZKC8wxrWdLE,245
157
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.delete,sha256=RspRDQ7WT5jpN2o-6qXOlH-A2VpN4981pD4ZJljk9Rw,260
158
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.disable,sha256=xVf4Pk1RLvJm7Ff0rbGoWhYHPv0ME5e93fxS2yFqLnE,45
159
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.down,sha256=WtEjm2hJ01-1GGxRmmcUqZq7VjEe5JfZZKvm8TNhNEs,219
160
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.enable,sha256=sfUSPG4uHdXX95BLgivXQYLbsLBP2DjJIiSTXRtvXuY,188
161
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.list,sha256=BdX3ARC-Piuwk0vFzBrcxEwtHjdFncpORzqP-hP4IwE,84
162
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.logs,sha256=4CJVEVLn9VTQN9LAjOJpijwd_DZ5IuIXL1aFCYkelxk,178
163
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.mkcert,sha256=vyHaXmvy-7oL2RD8rIxwT-fdJS5kXmB0yHK5fRMo_cM,46
164
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.reset,sha256=_pvbLk-ektsCHEh_egDtd6c0sVqCPunwUWggarfoli0,238
165
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.services,sha256=sAbaKzBxNDXimyUNinB_a2Kt47vUCa0Kd3Z1QAp2GrU,161
166
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.snapshot,sha256=Kav1QNhKG7f0DBzc4-9dmxZMmmVTxmPqakT_W4kVYKk,241
167
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/exec/.up,sha256=S88O31UgsabaMvSwkQJjLF9C7mrFkyEk9x6JDE6qSXI,228
168
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/mock/.configure,sha256=xWJGhCKQejtVLFAOEZMWnaCeGAc9tuqEh_WsG3xfA_0,184
169
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/mock/.init,sha256=_gFs--JjDN1G0VpswmPegKYU9ozwLnvWOKj__V_VoB4,307
170
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/record/.configure,sha256=xWJGhCKQejtVLFAOEZMWnaCeGAc9tuqEh_WsG3xfA_0,184
171
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/record/.init,sha256=5sH8Ft7N_cyFgTBknJWOjIMd5A2RZexRTeUkhKxSzx0,308
172
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/test/.configure,sha256=xWJGhCKQejtVLFAOEZMWnaCeGAc9tuqEh_WsG3xfA_0,184
173
+ stoobly_agent/app/cli/scaffold/templates/build/workflows/test/.init,sha256=_gFs--JjDN1G0VpswmPegKYU9ozwLnvWOKj__V_VoB4,307
168
174
  stoobly_agent/app/cli/scaffold/templates/constants.py,sha256=EXBiBB_gnSINGrIqfXMaJ2w0HEaICw4FxVjwIHPBqYw,1457
169
175
  stoobly_agent/app/cli/scaffold/templates/factory.py,sha256=t7QExf7o22oAiw05XFBWTfoTcuQqK33gQZHo3j1dzTY,1749
170
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.configure,sha256=z135hJDmBWYOhZbjuzC8-C6a0VtQ9NPx5mfCpVZliEA,210
171
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init,sha256=Qwkc9ckplXTmGDdcYm9g_0zOa7WAvOjruGAtaf1U7eU,328
172
176
  stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure,sha256=2cpOVTA0Tm8s8cIhbrFAsYe5A1JXa8vVtGwoPCwVB_g,270
173
177
  stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
174
178
  stoobly_agent/app/cli/scaffold/templates/workflow/mock/fixtures.yml,sha256=CJlZ_kugygZpmyqIauBjNZxqk7XyLaa3yl3AWj8KV28,259
175
179
  stoobly_agent/app/cli/scaffold/templates/workflow/mock/lifecycle_hooks.py,sha256=U7mlzT_wBR3uhHSG6CAyt5tBUNAvdIrCw33gdB-F294,467
176
180
  stoobly_agent/app/cli/scaffold/templates/workflow/mock/public/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.configure,sha256=z135hJDmBWYOhZbjuzC8-C6a0VtQ9NPx5mfCpVZliEA,210
178
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init,sha256=GekadmBjLyAxgTJbCA_NKgUXRwKFs8iX4qtV5YlvUXk,329
179
181
  stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure,sha256=bkMZexceMEfoh5AqybtzpGPBrCGxl7Azn6QbR-qAuWM,750
180
182
  stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
181
183
  stoobly_agent/app/cli/scaffold/templates/workflow/record/lifecycle_hooks.py,sha256=4vaVc_gnDTCLEqtcZybIk5dcmXrKmGuesF6gc3-_kX8,473
182
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.configure,sha256=z135hJDmBWYOhZbjuzC8-C6a0VtQ9NPx5mfCpVZliEA,210
183
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init,sha256=Qwkc9ckplXTmGDdcYm9g_0zOa7WAvOjruGAtaf1U7eU,328
184
184
  stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure,sha256=2cpOVTA0Tm8s8cIhbrFAsYe5A1JXa8vVtGwoPCwVB_g,270
185
185
  stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
186
186
  stoobly_agent/app/cli/scaffold/templates/workflow/test/fixtures.yml,sha256=CJlZ_kugygZpmyqIauBjNZxqk7XyLaa3yl3AWj8KV28,259
@@ -189,14 +189,15 @@ stoobly_agent/app/cli/scaffold/templates/workflow/test/public/.gitignore,sha256=
189
189
  stoobly_agent/app/cli/scaffold/validate_command.py,sha256=OjAbX-YNx165od6HCwKmgdyF3upNdyQsL_vXTsOK2mo,2426
190
190
  stoobly_agent/app/cli/scaffold/validate_exceptions.py,sha256=Jtjl4OkbbSRWm0hy7Kf_50zcFh2J324HhNcnwJKH_Oc,54
191
191
  stoobly_agent/app/cli/scaffold/workflow.py,sha256=KlbWT9CIo9EpZxKU1WVZtmodhxK7CpmLUHPNk4Mh6DA,1570
192
- stoobly_agent/app/cli/scaffold/workflow_command.py,sha256=s9GFo30Rm7-GvTW0xKCDXCrnKmd1-uTCxLOJr-cvhbQ,3289
192
+ stoobly_agent/app/cli/scaffold/workflow_command.py,sha256=eI9I5LLgO0U3b46QhHusy-4BV2zUDVai6jErcluYCRI,3344
193
+ stoobly_agent/app/cli/scaffold/workflow_config.py,sha256=ghnbcnCyb6ECdylUJCAJ6A8ulzaFY9bu7RvRuYeiRkk,901
193
194
  stoobly_agent/app/cli/scaffold/workflow_copy_command.py,sha256=R9hh5dWVz7vGld7pENAA_a9gW56EkgG2K35nBQYXwyI,1462
194
- stoobly_agent/app/cli/scaffold/workflow_create_command.py,sha256=bjNRph9TiOzleDiG6vYAExHWLVLAROBCPt6bPxtAmDo,3408
195
+ stoobly_agent/app/cli/scaffold/workflow_create_command.py,sha256=WmGKoqJqOkhL40oLCo8PnWhBKdfbY0dO2UtRn1IKynE,3504
195
196
  stoobly_agent/app/cli/scaffold/workflow_env.py,sha256=x8V5pJmIiklD3f2q2-qq-CORf4YaXYq_r2JpR2MmSwk,416
196
197
  stoobly_agent/app/cli/scaffold/workflow_log_command.py,sha256=Bke4lMOMxuDUFuAx9nlXHbKgYMO4KAg9ASHvjz4aVWc,1372
197
- stoobly_agent/app/cli/scaffold/workflow_run_command.py,sha256=GXteRAgco7NCb0Ov1B2_xs1DMyLg8vdDsCvH7whrlcE,9854
198
+ stoobly_agent/app/cli/scaffold/workflow_run_command.py,sha256=1XFlosc3a3Amev5uW3tECwZoIBYVCJsFqG2bGtAHvgg,10652
198
199
  stoobly_agent/app/cli/scaffold/workflow_validate_command.py,sha256=fhHciJXg_u32Wmh8us8LhgQj8D1SxkBADtuBBF4K0FM,4377
199
- stoobly_agent/app/cli/scaffold_cli.py,sha256=9Z90MKOjrGMmr41vcaU-V1LVhM7ekaVlfN0OZ3v-cfw,28301
200
+ stoobly_agent/app/cli/scaffold_cli.py,sha256=AoWqSRXXQrqK0YeSHLJkNRTOC23PHrjJBNrq_A8KZnc,28316
200
201
  stoobly_agent/app/cli/scenario_cli.py,sha256=3J1EiJOvunkfWrEkOsanw-XrKkOk78ij_GjBlE9p7CE,8229
201
202
  stoobly_agent/app/cli/snapshot_cli.py,sha256=cpCjxFYBuVwLuq_b2lIUu-5zWqupRlrp4xWgDytirSM,10047
202
203
  stoobly_agent/app/cli/trace_cli.py,sha256=K7E-vx3JUcqEDSWOdIOi_AieKNQz7dBfmRrVvKDkzFI,4605
@@ -696,7 +697,7 @@ stoobly_agent/test/app/models/factories/resource/local_db/helpers/log_test.py,sh
696
697
  stoobly_agent/test/app/models/factories/resource/local_db/helpers/tiebreak_scenario_request_test.py,sha256=a1SFLyEyRRLuADvAw6ckQQKORFXvyK1lyrbkaLWx8oU,3399
697
698
  stoobly_agent/test/app/models/factories/resource/local_db/request_adapter_test.py,sha256=Pzq1cBPnP9oSWG-p0c-VoymoHxgp483QmNwmV1b78RA,8453
698
699
  stoobly_agent/test/app/models/factories/resource/local_db/response_adapter_test.py,sha256=9P95EKH5rZGOrmRkRIDlQZqtiLJHk9735og18Ffwpfw,2204
699
- stoobly_agent/test/app/models/schemas/.stoobly/db/VERSION,sha256=eal7o-kq5ffI3jI_qSKhNuayimZKQKQ55EzOoY7U6Xw,5
700
+ stoobly_agent/test/app/models/schemas/.stoobly/db/VERSION,sha256=_f4T1QzFg0lLC81UhhuJRJ7MIzez92MEH4M0zL1X0Wc,5
700
701
  stoobly_agent/test/app/models/schemas/.stoobly/db/stoobly_agent.sqlite3,sha256=ch8gNx6zIelLKQx65gwFx_LRNqUD3EC5xcHZ0ukIQiU,188416
701
702
  stoobly_agent/test/app/models/schemas/.stoobly/settings.yml,sha256=vLwMjweKOdod6tSLtIlyBefPQuNXq9wio4kBaODKtAU,726
702
703
  stoobly_agent/test/app/models/schemas/.stoobly/tmp/options.json,sha256=OTRzarwus48CTrItedXCrgQttJHSEZonEYc7R_knvYg,2212
@@ -737,8 +738,8 @@ stoobly_agent/test/mock_data/scaffold/docker-compose-local-service.yml,sha256=_t
737
738
  stoobly_agent/test/mock_data/scaffold/index.html,sha256=qJwuYajKZ4ihWZrJQ3BNObV5kf1VGnnm_vqlPJzdqLE,258
738
739
  stoobly_agent/test/mock_data/uspto.yaml,sha256=6U5se7C3o-86J4m9xpOk9Npias399f5CbfWzR87WKwE,7835
739
740
  stoobly_agent/test/test_helper.py,sha256=m_oAI7tmRYCNZdKfNqISWhMv3e44tjeYViQ3nTUfnos,1007
740
- stoobly_agent-1.5.9.dist-info/LICENSE,sha256=o93sj12cdoEOsTCjPaPFsw3Xq0SXs3pPcY-9reE2sEw,548
741
- stoobly_agent-1.5.9.dist-info/METADATA,sha256=fZaHhToQFvNE2J3oh6SPYqY41pRYLfEaE0CluhOvm7U,3087
742
- stoobly_agent-1.5.9.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
743
- stoobly_agent-1.5.9.dist-info/entry_points.txt,sha256=aq5wix5oC8MDQtmyPGU0xaFrsjJg7WH28NmXh2sc3Z8,56
744
- stoobly_agent-1.5.9.dist-info/RECORD,,
741
+ stoobly_agent-1.6.1.dist-info/LICENSE,sha256=o93sj12cdoEOsTCjPaPFsw3Xq0SXs3pPcY-9reE2sEw,548
742
+ stoobly_agent-1.6.1.dist-info/METADATA,sha256=daCy3CxjBe_8ieKmVXg26SO_pDfCnh-ErkWJf2h_-wI,3087
743
+ stoobly_agent-1.6.1.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
744
+ stoobly_agent-1.6.1.dist-info/entry_points.txt,sha256=aq5wix5oC8MDQtmyPGU0xaFrsjJg7WH28NmXh2sc3Z8,56
745
+ stoobly_agent-1.6.1.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- #!/bin/bash
2
-
3
- # This file was automatically generated. DO NOT EDIT.
4
- # Any changes made to this file will be overwritten.
5
-
6
- stoobly-agent config reset
7
-
8
- cd $(dirname -- "$0") && ./configure
@@ -1,8 +0,0 @@
1
- #!/bin/bash
2
-
3
- # This file was automatically generated. DO NOT EDIT.
4
- # Any changes made to this file will be overwritten.
5
-
6
- stoobly-agent snapshot apply
7
-
8
- cd $(dirname -- "$0") && ./init
@@ -1,8 +0,0 @@
1
- #!/bin/bash
2
-
3
- # This file was automatically generated. DO NOT EDIT.
4
- # Any changes made to this file will be overwritten.
5
-
6
- stoobly-agent config reset
7
-
8
- cd $(dirname -- "$0") && ./configure
@@ -1,8 +0,0 @@
1
- #!/bin/bash
2
-
3
- # This file was automatically generated. DO NOT EDIT.
4
- # Any changes made to this file will be overwritten.
5
-
6
- stoobly-agent snapshot apply
7
-
8
- cd $(dirname -- "$0") && ./init
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
-
3
- entrypoint=$(dirname -- "$0")/init
4
-
5
- if [ -e "$entrypoint" ]; then
6
- "$entrypoint"
7
- fi
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
-
3
- entrypoint=$(dirname -- "$0")/init
4
-
5
- if [ -e "$entrypoint" ]; then
6
- "$entrypoint"
7
- fi
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
-
3
- entrypoint=$(dirname -- "$0")/init
4
-
5
- if [ -e "$entrypoint" ]; then
6
- "$entrypoint"
7
- fi