Skip to content

Commit 5cefe99

Browse files
author
Exploding Labs Bot
committed
Update site from docs source repo
1 parent c45b9f4 commit 5cefe99

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

superstack/gettingstarted/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -374,20 +374,20 @@ <h2 id="1-get-superstack">1. Get SuperStack</h2>
374374
<h3 id="option-1-use-the-template">Option 1: Use the Template</h3>
375375
<p>The easiest way to get started:</p>
376376
<p>Click <a href="https://github.com/explodinglabs/superstack/generate">Use this template</a>
377-
and create a new repository (e.g. <code>myapp</code>) on GitHub.</p>
377+
and create a new repository (e.g. <code>myapp-backend</code>) on GitHub.</p>
378378
<p>Clone it to your machine:</p>
379-
<div class="highlight"><pre><span></span><code>git<span class="w"> </span>clone<span class="w"> </span>https://github.com/yourname/myapp.git
380-
<span class="nb">cd</span><span class="w"> </span>myapp
379+
<div class="highlight"><pre><span></span><code>git<span class="w"> </span>clone<span class="w"> </span>https://github.com/yourname/myapp-backend.git
380+
<span class="nb">cd</span><span class="w"> </span>myapp-backend
381381
</code></pre></div>
382382
<h3 id="option-2-clone-and-track-upstream-advanced">Option 2: Clone and Track Upstream (Advanced)</h3>
383383
<p>If you want to keep SuperStack’s Git history and pull upstream changes later,
384384
clone SuperStack:</p>
385-
<div class="highlight"><pre><span></span><code>git<span class="w"> </span>clone<span class="w"> </span>https://github.com/explodinglabs/superstack.git<span class="w"> </span>myapp
386-
<span class="nb">cd</span><span class="w"> </span>myapp
385+
<div class="highlight"><pre><span></span><code>git<span class="w"> </span>clone<span class="w"> </span>https://github.com/explodinglabs/superstack.git<span class="w"> </span>myapp-backend
386+
<span class="nb">cd</span><span class="w"> </span>myapp-backend
387387
</code></pre></div>
388388
<p><a href="https://github.com/new">Create your own repo</a>, then:</p>
389389
<div class="highlight"><pre><span></span><code>git<span class="w"> </span>remote<span class="w"> </span>rename<span class="w"> </span>origin<span class="w"> </span>upstream
390-
git<span class="w"> </span>remote<span class="w"> </span>add<span class="w"> </span>origin<span class="w"> </span>https://github.com/yourname/myapp.git
390+
git<span class="w"> </span>remote<span class="w"> </span>add<span class="w"> </span>origin<span class="w"> </span>https://github.com/yourname/myapp-backend.git
391391
git<span class="w"> </span>push<span class="w"> </span>-u<span class="w"> </span>origin<span class="w"> </span>main
392392
</code></pre></div>
393393
<p>You can now pull upstream changes with:</p>

0 commit comments

Comments
 (0)