Skip to content

TheRosadoLab/sample-aws-starter-project

 
 

Repository files navigation

Sample AWS Starter Project

Build

A simple starter project with sample tests, CI/CD configuration for GitHub Actions and Travis CI, and some security configurations to lock down endpoints.

This repository was written as part of an example for the book Building Node.js serverless apps on AWS: A Brief Guide on Where to Start.

Setup

Have serverless installed locally and on your CI/CD pipeline:

npm install -g serverless

Make sure that you have your AWS Key and Secret in your env vars or bash profile:

export AWS_ACCESS_KEY_ID="YOUR_ACCESS_KEY_ID"
export AWS_SECRET_ACCESS_KEY="YOUR_SECRET_ACCESS_KEY"

Deployment

To deploy to AWS locally, make sure you have your AWS key and secret in your bash profile and execute the following:

sls deploy -v --stage <dev, test, staging, production, etc>

Usage

To execute locally, run the following command (npm install serverless -g is required):

sls offline --noAuth

or

npm start

If running locally, the beginning of your url will be http://localhost:3000

To hit the hello world endpoint provided in this example, submit a GET request against the URL http://localhost:3000/dev/sample/path/hello. The response will return a 200 HTTP status with the following body:

{
    "response": "Hello!"
}

About

A Fork of the Cloud Bytes Collection Sample Serverless API Node.js Starter by Eidan J. Rosado

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%