| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This repository is an example of how to deploy the "Hello, World" of probot apps to AWS Lambda using aws sam.
Install dependencies
npm install
Start the server
npm start
Follow the instructions to register a new GitHub app.
Get the following details about your GitHub app:
Subsequent deploys to the same stack to the default environment...
There are two options to debug locally.
# 1. Run npm install
npm install
# 2. Build container
docker build -t my-probot-app .
# 3. Srouce your .env file
export $(cat .env | xargs)
# 3. Start container
docker run \
-e APP_ID=$APP_ID \
-e PRIVATE_KEY=$PRIVATE_KEY \
-e WEBHOOK_SECRET=$WEBHOOK_SECRET \
my-probot-app| Back | FazBrowse Home | New Git URL |