Skip to content

Commit 22d788d

Browse files
committed
Adjust gettingstarted
1 parent 2744191 commit 22d788d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/gettingstarted.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ installed](https://docs.docker.com/get-docker/) before you begin.
1919
The easiest way to get started:
2020

2121
Click [Use this template](https://github.com/explodinglabs/superstack/generate)
22-
and create a new repository (e.g. `myapp`) on GitHub.
22+
and create a new repository (e.g. `myapp-backend`) on GitHub.
2323

2424
Clone it to your machine:
2525

2626
```sh
27-
git clone https://github.com/yourname/myapp.git
28-
cd myapp
27+
git clone https://github.com/yourname/myapp-backend.git
28+
cd myapp-backend
2929
```
3030

3131
### Option 2: Clone and Track Upstream (Advanced)
@@ -34,15 +34,15 @@ If you want to keep SuperStack’s Git history and pull upstream changes later,
3434
clone SuperStack:
3535

3636
```sh
37-
git clone https://github.com/explodinglabs/superstack.git myapp
38-
cd myapp
37+
git clone https://github.com/explodinglabs/superstack.git myapp-backend
38+
cd myapp-backend
3939
```
4040

4141
[Create your own repo](https://github.com/new), then:
4242

4343
```sh
4444
git remote rename origin upstream
45-
git remote add origin https://github.com/yourname/myapp.git
45+
git remote add origin https://github.com/yourname/myapp-backend.git
4646
git push -u origin main
4747
```
4848

0 commit comments

Comments
 (0)