Skip to content

Commit 1ae6f74

Browse files
Added README
1 parent a662b63 commit 1ae6f74

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Deploy a Frontend for the Quickstart
2+
3+
This is the repository for the [Quickstart Frontend Tutorial](https://docs.stackery.io/docs/tutorials/quickstart-frontend/) from Stackery.
4+
5+
This tutorial This tutorial will guide you through the process of deploying a simple frontend for the Backend API app created in the Quickstart.
6+
7+
> If you have not completed the Quickstart, do that first! This tutorial builds on the backend API that was created in the [Quickstart Tutorial](https://docs.stackery.io/docs/quickstart/quickstart-nodejs/).
8+
9+
## Deploy this to your AWS account
10+
11+
You can deploy this application to your own AWS account using the following two Stackery CLI commands:
12+
13+
`stackery create` will initialize a new repo in your GitHub account, initializing it with the contents of the referenced template repository.
14+
15+
```
16+
stackery create --stack-name 'quickstart-frontend-nodejs' \
17+
--git-provider 'github' \
18+
--template-git-url 'https://github.com/stackery/quickstart-frontend-nodejs'
19+
```
20+
21+
`stackery deploy` will deploy the newly created stack into your AWS account.
22+
23+
```
24+
stackery deploy --stack-name 'quickstart-frontend-nodejs' \
25+
--env-name 'development' \
26+
--git-ref 'master'
27+
```

0 commit comments

Comments
 (0)