Skip to content

Commit 6590dd2

Browse files
author
Exploding Labs Bot
committed
Update site from docs source repo
1 parent 61b6313 commit 6590dd2

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

superstack/gettingstarted/index.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -422,12 +422,20 @@ <h3 id="option-2-clone-and-track-upstream-advanced">Option 2: Clone and Track Up
422422
<div class="highlight"><pre><span></span><code>git<span class="w"> </span>pull<span class="w"> </span>upstream<span class="w"> </span>main
423423
</code></pre></div>
424424
<h2 id="2-configure-environment-variables">2. Configure Environment Variables</h2>
425-
<p>Copy the example file:</p>
425+
<p>Copy the example environment file:</p>
426426
<div class="highlight"><pre><span></span><code>cp<span class="w"> </span>example.env<span class="w"> </span>.env
427427
</code></pre></div>
428+
<p>This <code>.env</code> file is used to configure:</p>
429+
<ul>
430+
<li><strong>Secrets</strong> – Passwords, keys, etc.</li>
431+
<li><strong>Ports</strong> – Configured with env vars so you can adjust the exposed ports
432+
(specifically, Caddy's) depending on application (you may bring up multiple
433+
for development) or environment.</li>
434+
</ul>
428435
<blockquote>
429-
<p>⚠️ <strong>The .env file is for local development only.</strong> Don't store real secrets
430-
in production — use CI/CD environment variables or a secrets manager.</p>
436+
<p>⚠️ Important: This file is for local development only. Never store real
437+
secrets in version control or production. Use CI/CD environment variables or
438+
a secrets manager instead.</p>
431439
</blockquote>
432440
<h2 id="3-start-the-stack">3. Start the Stack</h2>
433441
<div class="highlight"><pre><span></span><code>docker<span class="w"> </span>compose<span class="w"> </span>up<span class="w"> </span>-d

0 commit comments

Comments
 (0)