Skip to content

Commit 146efc6

Browse files
authored
Merge branch 'master' into patch-1
2 parents 4801db2 + 8fc8423 commit 146efc6

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ serverless install -u https://github.com/author/project -n my-project
119119
| **[Sqs Worker With Aws Lambda And Cloudwatch Alarms](https://github.com/sbstjn/sqs-worker-serverless)** <br/> Process messages stored in SQS with an [auto-scaled AWS Lambda worker](https://sbstjn.com/serverless-sqs-worker-with-aws-lambda.html) function. | [sbstjn](http://github.com/sbstjn) |
120120
| **[Serverless + Lambda + Vpc + Nat + Redis](https://github.com/ittus/aws-lambda-vpc-nat-examples)** <br/> Demo using API Gateway and Lambda with VPC and NAT to access Internet and AWS Resource | [ittus](http://github.com/ittus) |
121121
| **[Serverless Analytics](https://github.com/sbstjn/serverless-analytics)** <br/> Write your own Google Analytics clone and track website visitors serverless with API Gateway, Kinesis, Lambda, and DynamoDB. | [sbstjn](http://github.com/sbstjn) |
122+
| **[Serverless Dashboard For Atom Editor](https://github.com/horike37/serverless-dashboard-for-atom)** <br/> Atom editor package which allows you to deploy and visualize your serverless services with Serverless Framework on your editor. | [horike37](http://github.com/horike37) |
122123
| **[Serverless Es6/7 Crud Api](https://github.com/AnomalyInnovations/serverless-stack-demo-api)** <br/> [Serverless Stack](http://serverless-stack.com) examples of backend CRUD APIs (DynamoDB + Lambda + API Gateway + Cognito User Pool authorizer) for [React.js single-page app](http://demo.serverless-stack.com) | [AnomalyInnovations](http://github.com/AnomalyInnovations) |
123124
| **[Serverless Gitlab Ci](https://github.com/bvincent1/serverless-gitlab-ci)** <br/> Simple Gitlab CI template for automatic testing and deployments | [bvincent1](http://github.com/bvincent1) |
124125
| **[Serverless Reactjs Universal Rendering Boilerplate](https://github.com/TylorShin/react-universal-in-serverless)** <br/> ReactJS web app Starter kit does universal (isomorphic) rendering with Serverless | [TylorShin](http://github.com/TylorShin) |
@@ -127,7 +128,7 @@ serverless install -u https://github.com/author/project -n my-project
127128
| **[Stack Overflow Monitor](https://github.com/picsoung/stackoverflowmonitor)** <br/> Monitor Stack Overflow questions and post them in a Slack channel | [picsoung](http://github.com/picsoung) |
128129
| **[Adoptable Pet Bot](https://github.com/lynnaloo/adoptable-pet-bot)** <br/> Tweets adoptable pets using Serverless (Node.js) and AWS Lambda | [lynnaloo](http://github.com/lynnaloo) |
129130
| **[Aws Ses Serverless Example](https://github.com/lakshmantgld/aws-ses-serverless-example)** <br/> AWS SES example in NodeJS using lambda | [lakshmantgld](http://github.com/lakshmantgld) |
130-
| **[Bablebot](https://github.com/abiglobalhealth/bablebot)** <br/> Lambda + API Gateway: Zero-to-chatbot in <10 lines of JS. Built-in integrations for Messenger, Telegram, Kik, Line, Twilio, Skype, and Wechat. Or roll your own! | [abiglobalhealth](http://github.com/abiglobalhealth) |
131+
| **[Babelbot](https://github.com/abiglobalhealth/babelbot)** <br/> Lambda + API Gateway: Zero-to-chatbot in <10 lines of JS. Built-in integrations for Messenger, Telegram, Kik, Line, Twilio, Skype, and Wechat. Or roll your own! | [abiglobalhealth](http://github.com/abiglobalhealth) |
131132
| **[Bittman](https://github.com/rhlsthrm/bittman)** <br/> A serverless project that follows a stock trading algorithm and uses scheduled functions to save data to DynamoDB and send emails through Mailgun. | [rhlsthrm](http://github.com/rhlsthrm) |
132133
| **[Cordis Serverless](https://github.com/marzeelabs/cordis-serverless)** <br/> A serverless API for EU Cordis data | [marzeelabs](http://github.com/marzeelabs) |
133134
| **[Faultline](https://github.com/faultline/faultline)** <br/> Error tracking tool on AWS managed services. | [faultline](http://github.com/faultline) |

aws-java-simple-http-endpoint/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ mvn package
5858

5959
Note: you can install Maven with
6060

61-
1. [sdkman](http://sdkman.io/) using "sdk install maven" (yes, use as default)
62-
2. sudo apt-get install mvn
63-
3. brew install maven
61+
1. [sdkman](http://sdkman.io/) using `sdk install maven` (yes, use as default)
62+
2. `sudo apt-get install mvn`
63+
3. `brew install maven`
6464

6565
If you use Maven to build, then in `serverless.yml` you have to replace
6666

6767
```yaml
6868
package:
6969
artifact: build/distributions/aws-java-simple-http-endpoint.zip
7070
```
71-
by
71+
with
7272
```yaml
7373
package:
7474
artifact: target/aws-java-simple-http-endpoint.jar

aws-node-rest-api-with-dynamodb/serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ frameworkVersion: ">=1.1.0 <2.0.0"
44

55
provider:
66
name: aws
7-
runtime: nodejs4.3
7+
runtime: nodejs6.10
88
environment:
99
DYNAMODB_TABLE: ${self:service}-${opt:stage, self:provider.stage}
1010
iamRoleStatements:

community-examples.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[
22
{
3-
"name": "bablebot",
3+
"name": "babelbot",
44
"description": "Lambda + API Gateway: Zero-to-chatbot in <10 lines of JS. Built-in integrations for Messenger, Telegram, Kik, Line, Twilio, Skype, and Wechat. Or roll your own!",
5-
"githubUrl": "https://github.com/abiglobalhealth/bablebot"
5+
"githubUrl": "https://github.com/abiglobalhealth/babelbot"
66
},
77
{
88
"name": "jwtAuthorizr",
@@ -313,6 +313,11 @@
313313
"description": "Demo using API Gateway and Lambda with Protocol Buffer",
314314
"githubUrl": "https://github.com/theburningmonk/lambda-protobuf-demo"
315315
},
316+
{
317+
"name": "Serverless Dashboard For Atom Editor",
318+
"description": "Atom editor package which allows you to deploy and visualize your serverless services with Serverless Framework on your editor.",
319+
"githubUrl": "https://github.com/horike37/serverless-dashboard-for-atom"
320+
},
316321
{
317322
"name": "Serverless + lambda + vpc + nat + redis",
318323
"description": "Demo using API Gateway and Lambda with VPC and NAT to access Internet and AWS Resource",
@@ -342,5 +347,10 @@
342347
"name": "Serverless Kakao Bot",
343348
"description": "Easy development for Kakaotalk Bot with Serverless",
344349
"githubUrl": "https://github.com/JisuPark/serverless-kakao-bot"
350+
},
351+
{
352+
"name": "Serverless Q&A Example",
353+
"description": "Inspired by the AWS example forum. A multitenancy Q&A template for surveys, forums and more",
354+
"githubUrl": "https://github.com/jacksoncharles/serverless-qa-template-api"
345355
}
346356
]

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy