Skip to content

Commit 5a7ad1f

Browse files
Deployed 2a44d99 with MkDocs version: 1.6.1
1 parent c00485c commit 5a7ad1f

5 files changed

Lines changed: 47 additions & 24 deletions

File tree

getting-started/register-component/index.html

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@
8080
<li class="toctree-l3"><a class="reference internal" href="#the-schemas-section">The SCHEMAS Section</a>
8181
</li>
8282
<li class="toctree-l3"><a class="reference internal" href="#the-remote_settings-section">The REMOTE_SETTINGS Section</a>
83+
<ul>
84+
<li class="toctree-l4"><a class="reference internal" href="#using-https-with-self-signed-certificates">Using HTTPS with Self-Signed Certificates</a>
85+
</li>
86+
<li class="toctree-l4"><a class="reference internal" href="#force-local-migration">Force Local Migration</a>
87+
</li>
88+
</ul>
8389
</li>
8490
</ul>
8591
</li>
@@ -447,7 +453,8 @@ <h3 id="the-remote_settings-section">The <code>REMOTE_SETTINGS</code> Section</h
447453
- <code>password</code>: The password for authentication (optional, default is "")
448454
- <code>namespace</code>: The namespace for the connection (optional, default is "USER")
449455
- <code>remote_folder</code>: The folder where the components are stored (optional, default is the routine database folder)
450-
- <code>package</code>: The package name for the components (optional, default is "python")</p>
456+
- <code>package</code>: The package name for the components (optional, default is "python")
457+
- <code>verify_ssl</code>: Whether to verify SSL certificates (optional, default is True). Set to False for self-signed certificates</p>
451458
<p>Example:</p>
452459
<pre><code class="language-python">from bo import FileOperation
453460

@@ -463,6 +470,22 @@ <h3 id="the-remote_settings-section">The <code>REMOTE_SETTINGS</code> Section</h
463470
}
464471
</code></pre>
465472
<p>This will import <code>FileOperation</code> from the <code>bo</code> module and register it under the key <code>'Python.FileOperation'</code> in the <code>CLASSES</code> dictionary.</p>
473+
<h4 id="using-https-with-self-signed-certificates">Using HTTPS with Self-Signed Certificates</h4>
474+
<p>If your remote IRIS instance uses HTTPS with a self-signed certificate, you need to disable SSL verification:</p>
475+
<pre><code class="language-python">REMOTE_SETTINGS = {
476+
&quot;url&quot;: &quot;https://localhost:8443&quot;,
477+
&quot;username&quot;: &quot;SuperUser&quot;,
478+
&quot;password&quot;: &quot;SYS&quot;,
479+
&quot;namespace&quot;: &quot;IRISAPP&quot;,
480+
&quot;verify_ssl&quot;: False # Disable SSL verification for self-signed certificates
481+
}
482+
</code></pre>
483+
<p><strong>Note:</strong> Disabling SSL verification should only be used in development or trusted environments, as it makes the connection vulnerable to man-in-the-middle attacks.</p>
484+
<h4 id="force-local-migration">Force Local Migration</h4>
485+
<p>You can force local migration (skip remote migration even if <code>REMOTE_SETTINGS</code> is present) by using the <code>--force-local</code> flag:</p>
486+
<pre><code class="language-bash">iop -m /path/to/settings.py --force-local
487+
</code></pre>
488+
<p>This is useful when you want to test local migration while keeping your <code>REMOTE_SETTINGS</code> configuration in the settings file.</p>
466489

467490
</div>
468491
</div><footer>

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,5 +206,5 @@ <h2 id="getting-started">Getting Started</h2>
206206

207207
<!--
208208
MkDocs version : 1.6.1
209-
Build Date UTC : 2025-08-01 12:03:25.142157+00:00
209+
Build Date UTC : 2025-11-03 11:18:37.618429+00:00
210210
-->

search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

sitemap.xml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,86 +2,86 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://grongierisc.github.io/interoperability-embedded-python/</loc>
5-
<lastmod>2025-08-01</lastmod>
5+
<lastmod>2025-11-03</lastmod>
66
</url>
77
<url>
88
<loc>https://grongierisc.github.io/interoperability-embedded-python/benchmarks/</loc>
9-
<lastmod>2025-08-01</lastmod>
9+
<lastmod>2025-11-03</lastmod>
1010
</url>
1111
<url>
1212
<loc>https://grongierisc.github.io/interoperability-embedded-python/changelog/</loc>
13-
<lastmod>2025-08-01</lastmod>
13+
<lastmod>2025-11-03</lastmod>
1414
</url>
1515
<url>
1616
<loc>https://grongierisc.github.io/interoperability-embedded-python/code-of-conduct/</loc>
17-
<lastmod>2025-08-01</lastmod>
17+
<lastmod>2025-11-03</lastmod>
1818
</url>
1919
<url>
2020
<loc>https://grongierisc.github.io/interoperability-embedded-python/command-line/</loc>
21-
<lastmod>2025-08-01</lastmod>
21+
<lastmod>2025-11-03</lastmod>
2222
</url>
2323
<url>
2424
<loc>https://grongierisc.github.io/interoperability-embedded-python/component-interaction/</loc>
25-
<lastmod>2025-08-01</lastmod>
25+
<lastmod>2025-11-03</lastmod>
2626
</url>
2727
<url>
2828
<loc>https://grongierisc.github.io/interoperability-embedded-python/contributing/</loc>
29-
<lastmod>2025-08-01</lastmod>
29+
<lastmod>2025-11-03</lastmod>
3030
</url>
3131
<url>
3232
<loc>https://grongierisc.github.io/interoperability-embedded-python/credits/</loc>
33-
<lastmod>2025-08-01</lastmod>
33+
<lastmod>2025-11-03</lastmod>
3434
</url>
3535
<url>
3636
<loc>https://grongierisc.github.io/interoperability-embedded-python/debug/</loc>
37-
<lastmod>2025-08-01</lastmod>
37+
<lastmod>2025-11-03</lastmod>
3838
</url>
3939
<url>
4040
<loc>https://grongierisc.github.io/interoperability-embedded-python/dtl/</loc>
41-
<lastmod>2025-08-01</lastmod>
41+
<lastmod>2025-11-03</lastmod>
4242
</url>
4343
<url>
4444
<loc>https://grongierisc.github.io/interoperability-embedded-python/example/</loc>
45-
<lastmod>2025-08-01</lastmod>
45+
<lastmod>2025-11-03</lastmod>
4646
</url>
4747
<url>
4848
<loc>https://grongierisc.github.io/interoperability-embedded-python/logging/</loc>
49-
<lastmod>2025-08-01</lastmod>
49+
<lastmod>2025-11-03</lastmod>
5050
</url>
5151
<url>
5252
<loc>https://grongierisc.github.io/interoperability-embedded-python/prod-settings/</loc>
53-
<lastmod>2025-08-01</lastmod>
53+
<lastmod>2025-11-03</lastmod>
5454
</url>
5555
<url>
5656
<loc>https://grongierisc.github.io/interoperability-embedded-python/python-api/</loc>
57-
<lastmod>2025-08-01</lastmod>
57+
<lastmod>2025-11-03</lastmod>
5858
</url>
5959
<url>
6060
<loc>https://grongierisc.github.io/interoperability-embedded-python/settings/</loc>
61-
<lastmod>2025-08-01</lastmod>
61+
<lastmod>2025-11-03</lastmod>
6262
</url>
6363
<url>
6464
<loc>https://grongierisc.github.io/interoperability-embedded-python/useful-links/</loc>
65-
<lastmod>2025-08-01</lastmod>
65+
<lastmod>2025-11-03</lastmod>
6666
</url>
6767
<url>
6868
<loc>https://grongierisc.github.io/interoperability-embedded-python/venv/</loc>
69-
<lastmod>2025-08-01</lastmod>
69+
<lastmod>2025-11-03</lastmod>
7070
</url>
7171
<url>
7272
<loc>https://grongierisc.github.io/interoperability-embedded-python/wrapper/</loc>
73-
<lastmod>2025-08-01</lastmod>
73+
<lastmod>2025-11-03</lastmod>
7474
</url>
7575
<url>
7676
<loc>https://grongierisc.github.io/interoperability-embedded-python/getting-started/first-steps/</loc>
77-
<lastmod>2025-08-01</lastmod>
77+
<lastmod>2025-11-03</lastmod>
7878
</url>
7979
<url>
8080
<loc>https://grongierisc.github.io/interoperability-embedded-python/getting-started/installation/</loc>
81-
<lastmod>2025-08-01</lastmod>
81+
<lastmod>2025-11-03</lastmod>
8282
</url>
8383
<url>
8484
<loc>https://grongierisc.github.io/interoperability-embedded-python/getting-started/register-component/</loc>
85-
<lastmod>2025-08-01</lastmod>
85+
<lastmod>2025-11-03</lastmod>
8686
</url>
8787
</urlset>

sitemap.xml.gz

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)