Skip to content

Commit

Permalink
renamed sample application to nodejs-example-express-dynamo
Browse files Browse the repository at this point in the history
  • Loading branch information
hacbrown committed Mar 1, 2023
1 parent 783d9c2 commit d38133a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AWS Elastic Beanstalk Sample App with Dynamo
# AWS Elastic Beanstalk Express Sample App with Dynamo
This sample application uses the [Express](https://expressjs.com/) framework and [Bootstrap](http://getbootstrap.com/) to build a simple, scalable customer signup form that is deployed to [AWS Elastic Beanstalk](http://aws.amazon.com/elasticbeanstalk/). The application stores data in [Amazon DynamoDB](http://aws.amazon.com/dynamodb/) and publishes notifications to the [Amazon Simple Notification Service (SNS)](http://aws.amazon.com/sns/) when a customer fills out the form.

This example cannot be run locally.
Expand All @@ -12,7 +12,7 @@ You can get started using the following steps:
- Select the managed policy for the additional services that your application uses. For this specific example, add `AmazonSNSFullAccess` and `AmazonDynamoDBFullAccess`.
- Choose Attach policy.
3. Run `eb init --platform node.js --region <region>` to initialize the folder for use with the CLI. Replace `<region>` with a region identifier such as `us-east-2` (see [Regions and Endpoints](https://docs.amazonaws.cn/en_us/general/latest/gr/rande.html#elasticbeanstalk_region) for a full list of region identifiers).
4. Run `eb create --sample nodejs-example-dynamo` to begin the creation of a sample application that contains a load-balanced environment with the default settings for the Node.js platform.
4. Run `eb create --sample nodejs-example-express-dynamo` to begin the creation of a sample application that contains a load-balanced environment with the default settings for the Node.js platform.
5. Once the environment creation process completes, run `eb open` to load the sample environment in your browser to verify the deployment has succeeded and is accessible.
6. Deploy the source in this bundle using `eb deploy`.
7. Once the deployment of this source bundle completes, run `eb open` to interact with the new webpage.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "nodejs-example-dynamo",
"name": "nodejs-example-express-dynamo",
"version": "0.0.1",
"private": true,
"dependencies": {
Expand Down

0 comments on commit d38133a

Please sign in to comment.