Skip to content

Commit bf84e98

Browse files
committed
Improved main readme and lesson 1
1 parent 6ec58f7 commit bf84e98

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

lessons/01-deploying-frontend/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ aws s3 cp resources/frontend s3://$FRONTEND_BUCKET --recursive --exclude 'node_m
8080

8181
> 💡 **TIP**: the `--exclude` option will make sure that we won't copy files that are not needed for the frontend to work (in this case the `node_modules` folder which is used only for development dependencies).
8282
83+
Alternatively, if you don't have the resource files locally, you can copy them from a public S3 bucket with the following command:
84+
85+
```bash
86+
aws s3 cp --recursive s3://ticketless-resources s3://$FRONTEND_BUCKET
87+
```
88+
8389
If you want to make sure the files are there, you can run again the command:
8490

8591
```

lessons/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ In the rest of this workshop you'll be running commands and editing files in thi
3737
> curl -o .env https://raw.githubusercontent.com/lucpod/serverless-workshop-helper-container/master/.env~SAMPLE
3838
> # Edit the .env file and add your AWS credentials settings
3939
>
40+
> docker pull lucpod/workshop:latest
4041
> docker-compose up -d
4142
> docker-compose exec workshop bash
4243
>

0 commit comments

Comments
 (0)