Skip to content

Commit d1f0178

Browse files
committed
Rebuild docs
1 parent 6b66410 commit d1f0178

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+865
-1472
lines changed

iko/404.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@
326326

327327

328328
<span class="md-ellipsis">
329-
Commands
329+
Command Reference
330330

331331
</span>
332332

@@ -348,7 +348,7 @@
348348

349349

350350
<span class="md-ellipsis">
351-
Scripting
351+
Scripting Migrations
352352

353353
</span>
354354

@@ -370,7 +370,7 @@
370370

371371

372372
<span class="md-ellipsis">
373-
Deploying
373+
Deploying to Remote Environments
374374

375375
</span>
376376

iko/commands/index.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424

25-
<title>Commands - iko</title>
25+
<title>Command Reference - iko</title>
2626

2727

2828

@@ -110,7 +110,7 @@
110110
<div class="md-header__topic" data-md-component="header-topic">
111111
<span class="md-ellipsis">
112112

113-
Commands
113+
Command Reference
114114

115115
</span>
116116
</div>
@@ -346,7 +346,7 @@
346346

347347

348348
<span class="md-ellipsis">
349-
Commands
349+
Command Reference
350350

351351
</span>
352352

@@ -359,7 +359,7 @@
359359

360360

361361
<span class="md-ellipsis">
362-
Commands
362+
Command Reference
363363

364364
</span>
365365

@@ -674,7 +674,7 @@
674674

675675

676676
<span class="md-ellipsis">
677-
Scripting
677+
Scripting Migrations
678678

679679
</span>
680680

@@ -696,7 +696,7 @@
696696

697697

698698
<span class="md-ellipsis">
699-
Deploying
699+
Deploying to Remote Environments
700700

701701
</span>
702702

@@ -1099,13 +1099,13 @@ <h3 id="create_function_as">create_function_as</h3>
10991099
<h4>Example</h4>
11001100

11011101
<p>To define a function named <code>square</code>:</p>
1102-
<div class="highlight"><pre><span></span><code>create_function_as<span class="w"> </span>square<span class="w"> </span><span class="s">&lt;&lt;&#39;EOF&#39;</span>
1102+
<div class="highlight"><pre><span></span><code>create_function_as<span class="w"> </span>square<span class="w"> </span><span class="s">&lt;&lt;&#39;SQL&#39;</span>
11031103
<span class="s">create function square(number int) returns int as $$</span>
11041104
<span class="s">begin</span>
11051105
<span class="s"> return number * number;</span>
11061106
<span class="s">end;</span>
11071107
<span class="s">$$ language plpgsql;</span>
1108-
<span class="s">EOF</span>
1108+
<span class="s">SQL</span>
11091109
</code></pre></div>
11101110
<h2 id="grants">Grants</h2>
11111111
<blockquote>
@@ -1211,13 +1211,13 @@ <h3 id="create_table_as">create_table_as</h3>
12111211
<h4>Example</h4>
12121212

12131213
<p>To create a table named <code>customer</code>:</p>
1214-
<div class="highlight"><pre><span></span><code>create_table_as<span class="w"> </span>customer<span class="w"> </span><span class="s">&lt;&lt;&#39;EOF&#39;</span>
1214+
<div class="highlight"><pre><span></span><code>create_table_as<span class="w"> </span>customer<span class="w"> </span><span class="s">&lt;&lt;&#39;SQL&#39;</span>
12151215
<span class="s">create table customer (</span>
12161216
<span class="s"> id bigint generated always as identity primary key,</span>
12171217
<span class="s"> created_at timestamp not null default now(),</span>
12181218
<span class="s"> name text not null</span>
12191219
<span class="s">);</span>
1220-
<span class="s">EOF</span>
1220+
<span class="s">SQL</span>
12211221
</code></pre></div>
12221222
<h2 id="triggers">Triggers</h2>
12231223
<blockquote>
@@ -1248,11 +1248,11 @@ <h3 id="create_trigger_as">create_trigger_as</h3>
12481248
<h4>Example</h4>
12491249

12501250
<p>Create a trigger <code>modify</code> on table <code>contact</code> calling <code>modify_record</code>:</p>
1251-
<div class="highlight"><pre><span></span><code>create_trigger_as<span class="w"> </span>modify<span class="w"> </span>contact<span class="w"> </span><span class="s">&lt;&lt;&#39;EOF&#39;</span>
1251+
<div class="highlight"><pre><span></span><code>create_trigger_as<span class="w"> </span>modify<span class="w"> </span>contact<span class="w"> </span><span class="s">&lt;&lt;&#39;SQL&#39;</span>
12521252
<span class="s">create trigger modify</span>
12531253
<span class="s"> after insert or update on contact</span>
12541254
<span class="s"> for each row execute function modify_record();</span>
1255-
<span class="s">EOF</span>
1255+
<span class="s">SQL</span>
12561256
</code></pre></div>
12571257

12581258

@@ -1300,13 +1300,13 @@ <h4>Example</h4>
13001300

13011301

13021302

1303-
<a href="../scripting/" class="md-footer__link md-footer__link--next" aria-label="Next: Scripting">
1303+
<a href="../scripting/" class="md-footer__link md-footer__link--next" aria-label="Next: Scripting Migrations">
13041304
<div class="md-footer__title">
13051305
<span class="md-footer__direction">
13061306
Next
13071307
</span>
13081308
<div class="md-ellipsis">
1309-
Scripting
1309+
Scripting Migrations
13101310
</div>
13111311
</div>
13121312
<div class="md-footer__button md-icon">

iko/deploying/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222

23-
<title>Deploying - iko</title>
23+
<title>Deploying to Remote Environments - iko</title>
2424

2525

2626

@@ -108,7 +108,7 @@
108108
<div class="md-header__topic" data-md-component="header-topic">
109109
<span class="md-ellipsis">
110110

111-
Deploying
111+
Deploying to Remote Environments
112112

113113
</span>
114114
</div>
@@ -335,7 +335,7 @@
335335

336336

337337
<span class="md-ellipsis">
338-
Commands
338+
Command Reference
339339

340340
</span>
341341

@@ -357,7 +357,7 @@
357357

358358

359359
<span class="md-ellipsis">
360-
Scripting
360+
Scripting Migrations
361361

362362
</span>
363363

@@ -388,7 +388,7 @@
388388

389389

390390
<span class="md-ellipsis">
391-
Deploying
391+
Deploying to Remote Environments
392392

393393
</span>
394394

@@ -401,7 +401,7 @@
401401

402402

403403
<span class="md-ellipsis">
404-
Deploying
404+
Deploying to Remote Environments
405405

406406
</span>
407407

@@ -710,7 +710,7 @@ <h4 id="do-i-need-network">🤔 Do I need --network?</h4>
710710
<nav class="md-footer__inner md-grid" aria-label="Footer" >
711711

712712

713-
<a href="../scripting/" class="md-footer__link md-footer__link--prev" aria-label="Previous: Scripting">
713+
<a href="../scripting/" class="md-footer__link md-footer__link--prev" aria-label="Previous: Scripting Migrations">
714714
<div class="md-footer__button md-icon">
715715

716716
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
@@ -720,7 +720,7 @@ <h4 id="do-i-need-network">🤔 Do I need --network?</h4>
720720
Previous
721721
</span>
722722
<div class="md-ellipsis">
723-
Scripting
723+
Scripting Migrations
724724
</div>
725725
</div>
726726
</a>

iko/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@
388388

389389

390390
<span class="md-ellipsis">
391-
Commands
391+
Command Reference
392392

393393
</span>
394394

@@ -410,7 +410,7 @@
410410

411411

412412
<span class="md-ellipsis">
413-
Scripting
413+
Scripting Migrations
414414

415415
</span>
416416

@@ -432,7 +432,7 @@
432432

433433

434434
<span class="md-ellipsis">
435-
Deploying
435+
Deploying to Remote Environments
436436

437437
</span>
438438

@@ -508,9 +508,9 @@ <h2 id="table-of-contents">Table of Contents</h2>
508508
<ul>
509509
<li><a href="installation/">Installation</a></li>
510510
<li><a href="usage/">Usage</a></li>
511-
<li><a href="commands/">Commands</a></li>
512-
<li><a href="scripting/">Scripting</a></li>
513-
<li><a href="deploying/">Deploying</a></li>
511+
<li><a href="commands/">Command Reference</a></li>
512+
<li><a href="scripting/">Scripting Migrations</a></li>
513+
<li><a href="deploying/">Deploying to Remote Environments</a></li>
514514
</ul>
515515

516516

iko/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ WRAPPER="$INSTALL_DIR/iko"
77

88
mkdir -p "$INSTALL_DIR"
99

10-
cat > "$WRAPPER" <<'EOF'
10+
cat > "$WRAPPER" <<'SQL'
1111
#!/bin/sh
1212
set -euo pipefail
1313
@@ -22,7 +22,7 @@ docker run --rm -it \
2222
-v "${PWD}/migrations:/repo:rw" \
2323
-v "${PWD}/scripts:/scripts:ro" \
2424
ghcr.io/explodinglabs/iko:0.1.0 "$@"
25-
EOF
25+
SQL
2626

2727
chmod +x "$WRAPPER"
2828

iko/installation/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@
388388

389389

390390
<span class="md-ellipsis">
391-
Commands
391+
Command Reference
392392

393393
</span>
394394

@@ -410,7 +410,7 @@
410410

411411

412412
<span class="md-ellipsis">
413-
Scripting
413+
Scripting Migrations
414414

415415
</span>
416416

@@ -432,7 +432,7 @@
432432

433433

434434
<span class="md-ellipsis">
435-
Deploying
435+
Deploying to Remote Environments
436436

437437
</span>
438438

0 commit comments

Comments
 (0)