Skip to content

stackery/stackery-quickstart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Stackery Quickstart Example

This is a sample template for a serverless AWS Lambda application, written in Node.js.

Follow the Stackery Quickstart to learn to use Stackery while writing this application.

This application contains one Lambda Function. The getWelcomePage function responds to web request events from an API Gateway endpoint.

The application architecture is defined in template.yaml, a Serverless Application Model (SAM) template which can be managed through the Stackery UI at app.stackery.io.

Here is an overview of the files:

.
├── README.md                   <-- This README file
├── src                         <-- Source code dir for all AWS Lambda functions
│   ├── getWelcomePage          <-- Source code dir for getWelcomePage function
│   │   ├── README.md           <-- Function-specific README
│   │   ├── index.js            <-- Lambda function code
│   │   ├── package.json        <-- NodeJS dependencies
│   │   └── welcome.html        <-- HTML welcome page returned by Lambda function
└── template.yaml               <-- SAM infrastructure-as-code template