port-ocean 0.15.2__py3-none-any.whl → 0.15.3__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.
Potentially problematic release.
This version of port-ocean might be problematic. Click here for more details.
- port_ocean/cli/commands/new.py +4 -7
- port_ocean/cli/cookiecutter/cookiecutter.json +3 -0
- port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.env.example +6 -2
- port_ocean/debug_cli.py +5 -0
- {port_ocean-0.15.2.dist-info → port_ocean-0.15.3.dist-info}/METADATA +1 -1
- {port_ocean-0.15.2.dist-info → port_ocean-0.15.3.dist-info}/RECORD +9 -8
- {port_ocean-0.15.2.dist-info → port_ocean-0.15.3.dist-info}/LICENSE.md +0 -0
- {port_ocean-0.15.2.dist-info → port_ocean-0.15.3.dist-info}/WHEEL +0 -0
- {port_ocean-0.15.2.dist-info → port_ocean-0.15.3.dist-info}/entry_points.txt +0 -0
port_ocean/cli/commands/new.py
CHANGED
|
@@ -77,18 +77,15 @@ def new(path: str, is_private_integration: bool) -> None:
|
|
|
77
77
|
)
|
|
78
78
|
console.print("Here are your next steps:\n", style="bold")
|
|
79
79
|
console.print(
|
|
80
|
-
"⚓️ Install necessary packages: Run [bold][blue]make install[/blue][/bold] to install all required packages for your project
|
|
81
|
-
f"▶️ [bold][blue]cd {path}/{name} && make install && . .venv/bin/activate[/blue][/bold]\n"
|
|
80
|
+
f"⚓️ Install necessary packages: Run [bold][blue]cd {path}/{name} && make install && . .venv/bin/activate[/blue][/bold] to install all required packages for your project."
|
|
82
81
|
)
|
|
83
82
|
console.print(
|
|
84
|
-
|
|
83
|
+
"⚓️ Copy example env file: Run [bold][blue]cp .env.example .env [/blue][/bold] and update your integration's configuration in the .env file."
|
|
85
84
|
)
|
|
86
85
|
console.print(
|
|
87
|
-
"⚓️ Set sail with [blue]Ocean[/blue]: Run [bold][blue]ocean sail[/blue]
|
|
88
|
-
f"▶️ [bold][blue]ocean sail {path}/{name}[/blue][/bold] \n"
|
|
86
|
+
"⚓️ Set sail with [blue]Ocean[/blue]: Run [bold][blue]ocean sail[/blue][/bold] to run the project using Ocean."
|
|
89
87
|
)
|
|
90
88
|
if not final_private_integration:
|
|
91
89
|
console.print(
|
|
92
|
-
"⚓️ Smooth sailing with [blue]Make[/blue]: Alternatively, you can run [bold][blue]make run[/blue][/bold] to launch your project using Make.
|
|
93
|
-
f"▶️ [bold][blue]make run {path}/{name}[/blue][/bold]"
|
|
90
|
+
f"⚓️ Smooth sailing with [blue]Make[/blue]: Alternatively, you can run [bold][blue]make run {path}/{name}[/blue][/bold] to launch your project using Make."
|
|
94
91
|
)
|
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
"email": "Your address email <you@example.com>",
|
|
7
7
|
"release_date": "{% now 'local' %}",
|
|
8
8
|
"is_private_integration": true,
|
|
9
|
+
"port_client_id": "you can find it using: https://docs.getport.io/build-your-software-catalog/custom-integration/api/#find-your-port-credentials",
|
|
10
|
+
"port_client_secret": "you can find it using: https://docs.getport.io/build-your-software-catalog/custom-integration/api/#find-your-port-credentials",
|
|
11
|
+
"is_us_region": false,
|
|
9
12
|
"_extensions": [
|
|
10
13
|
"jinja2_time.TimeExtension",
|
|
11
14
|
"extensions.VersionExtension"
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
OCEAN__PORT__CLIENT_ID=
|
|
2
|
-
OCEAN__PORT__CLIENT_SECRET=
|
|
1
|
+
OCEAN__PORT__CLIENT_ID={{ cookiecutter.port_client_id }}
|
|
2
|
+
OCEAN__PORT__CLIENT_SECRET={{ cookiecutter.port_client_secret }}
|
|
3
|
+
OCEAN__INTEGRATION__IDENTIFIER={{ cookiecutter.integration_slug }}
|
|
4
|
+
OCEAN__PORT__BASE_URL={% if cookiecutter.is_us_region %}https://api.us.getport.io{% else %}https://api.getport.io{% endif %}
|
|
5
|
+
OCEAN__EVENT_LISTENER__TYPE=POLLING
|
|
6
|
+
OCEAN__INITIALIZE_PORT_RESOURCES=true
|
port_ocean/debug_cli.py
ADDED
|
@@ -17,15 +17,15 @@ port_ocean/cli/commands/defaults/dock.py,sha256=pFtHrU_LTvb5Ddrzj09Wxy-jg1Ym10wB
|
|
|
17
17
|
port_ocean/cli/commands/defaults/group.py,sha256=hii_4CYoQ7jSMePbnP4AmruO_RKWCUcoV7dXXBlZafc,115
|
|
18
18
|
port_ocean/cli/commands/list_integrations.py,sha256=DVVioFruGUE-_v6UUHlcemWNN6RlWwCrf1X4HmAXsf8,1134
|
|
19
19
|
port_ocean/cli/commands/main.py,sha256=gj0lmuLep2XeLNuabB7Wk0UVYPT7_CD_rAw5AoUQWSE,1057
|
|
20
|
-
port_ocean/cli/commands/new.py,sha256=
|
|
20
|
+
port_ocean/cli/commands/new.py,sha256=qJ6fQG1t95U574Cvx5pMRgxabrmdB6kxEI0bwuTryb8,3262
|
|
21
21
|
port_ocean/cli/commands/pull.py,sha256=VvrRjLNlfPuLIf7KzeIcbzzdi98Z0M9wCRpXC3QPxdI,2306
|
|
22
22
|
port_ocean/cli/commands/sail.py,sha256=rY7rEMjfy_KXiWvtL0T72TTLgeQ3HW4SOzKkz9wL9nI,2282
|
|
23
23
|
port_ocean/cli/commands/version.py,sha256=hEuIEIcm6Zkamz41Z9nxeSM_4g3oNlAgWwQyDGboh-E,536
|
|
24
24
|
port_ocean/cli/cookiecutter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
port_ocean/cli/cookiecutter/cookiecutter.json,sha256=
|
|
25
|
+
port_ocean/cli/cookiecutter/cookiecutter.json,sha256=ie-LJjg-ek3lP2RRosY2u_q2W4y2TykXm_Gynjjt6Es,814
|
|
26
26
|
port_ocean/cli/cookiecutter/extensions.py,sha256=eQNjZvy2enDkJpvMbBGil77Xk9-38f862wfnmCjdoBc,446
|
|
27
27
|
port_ocean/cli/cookiecutter/hooks/post_gen_project.py,sha256=tFqtsjSbu7HMN32WIiFO37S1a_dfHezvdPwmM6MmNJk,1182
|
|
28
|
-
port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.env.example,sha256=
|
|
28
|
+
port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.env.example,sha256=ywAmZto6YBGXyhEmpG1uYsgaHr2N1ZBRjdtRNt6Vkpw,388
|
|
29
29
|
port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.gitignore,sha256=32p1lDW_g5hyBz486GWfDeR9m7ikFlASVri5a8vmNoo,2698
|
|
30
30
|
port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.port/resources/.gitignore,sha256=kCpRPdl3S_jqYYZaOrc0-xa6-l3KqVjNRXc6jCkd_-Q,12
|
|
31
31
|
port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.port/resources/blueprints.json,sha256=9kf5gY4YjP78vEPfd9j7347sV6wiqeHzmBz7UJkvmDg,1187
|
|
@@ -105,6 +105,7 @@ port_ocean/core/integrations/mixins/utils.py,sha256=7y1rGETZIjOQadyIjFJXIHKkQFKx
|
|
|
105
105
|
port_ocean/core/models.py,sha256=71QIFHl-p401h2HnSDQ-aaLXhu6z3iHTwCBI0TewJos,1902
|
|
106
106
|
port_ocean/core/ocean_types.py,sha256=3_d8-n626f1kWLQ_Jxw194LEyrOVupz05qs_Y1pvB-A,990
|
|
107
107
|
port_ocean/core/utils.py,sha256=QSRuF9wlhbOw6cELlDlek_UIX6ciIuKWml8QhBmHU_k,3703
|
|
108
|
+
port_ocean/debug_cli.py,sha256=gHrv-Ey3cImKOcGZpjoHlo4pa_zfmyOl6TUM4o9VtcA,96
|
|
108
109
|
port_ocean/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
110
|
port_ocean/exceptions/api.py,sha256=TLmTMqn4uHGaHgZK8PMIJ0TVJlPB4iP7xl9rx7GtCyY,426
|
|
110
111
|
port_ocean/exceptions/base.py,sha256=uY4DX7fIITDFfemCJDWpaZi3bD51lcANc5swpoNvMJA,46
|
|
@@ -152,8 +153,8 @@ port_ocean/utils/repeat.py,sha256=0EFWM9d8lLXAhZmAyczY20LAnijw6UbIECf5lpGbOas,32
|
|
|
152
153
|
port_ocean/utils/signal.py,sha256=K-6kKFQTltcmKDhtyZAcn0IMa3sUpOHGOAUdWKgx0_E,1369
|
|
153
154
|
port_ocean/utils/time.py,sha256=pufAOH5ZQI7gXvOvJoQXZXZJV-Dqktoj9Qp9eiRwmJ4,1939
|
|
154
155
|
port_ocean/version.py,sha256=UsuJdvdQlazzKGD3Hd5-U7N69STh8Dq9ggJzQFnu9fU,177
|
|
155
|
-
port_ocean-0.15.
|
|
156
|
-
port_ocean-0.15.
|
|
157
|
-
port_ocean-0.15.
|
|
158
|
-
port_ocean-0.15.
|
|
159
|
-
port_ocean-0.15.
|
|
156
|
+
port_ocean-0.15.3.dist-info/LICENSE.md,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
|
157
|
+
port_ocean-0.15.3.dist-info/METADATA,sha256=97A1rlQ3w2zUQl6-OKN_6n_yJvMquXcJWwsJ3bNJ3hg,6673
|
|
158
|
+
port_ocean-0.15.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
159
|
+
port_ocean-0.15.3.dist-info/entry_points.txt,sha256=F_DNUmGZU2Kme-8NsWM5LLE8piGMafYZygRYhOVtcjA,54
|
|
160
|
+
port_ocean-0.15.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|