examples icon indicating copy to clipboard operation
examples copied to clipboard

Serverless Examples – A collection of boilerplates and examples of serverless architectures built with the Serverless Framework on AWS Lambda, Microsoft Azure, Google Cloud Functions, and more.

Results 136 examples issues
Sort by recently updated
recently updated
newest added

In https://github.com/serverless/examples/tree/master/aws-python-rest-api-with-dynamodb, `cors: true` is set in configuration of each endpoint, but that only covers pre-flight CORS requests. Need to add headers in the response object as well, per https://www.serverless.com/blog/cors-api-gateway-survival-guide

Hi, Can you post example of nodejs with ibm_db package. I am getting below error. "errorType": "Error", "errorMessage": "libnode.so.64: cannot open shared object file: No such file or directory", "trace":...

Hi, A little example with Golang + Travis CI

Adding a community example section should include _step 3_ 3. Regenerate the README.md with the following command ```bash npm run docs ``` I can create a PR if this is...

Hi all, when I try to pass a custom profile I get this error: ``` > serverless publishSite Type Error --------------------------------------------- TypeError: Cannot read property 'toString' of null at ServerlessPlugin.runAwsCommand...

I got the cloud formation template & s3 bucket deployed using serverless deploy. but when I invoke serverless syncToS3, I'm getting Serverless: fatal error: Unable to locate credentials. The credentials...

All the required dependencies are installed. Tried running the lambda functions locally using 'serverless-offline'. Tried hitting the endpoint GET | http://localhost:3000/dev/todos Got the following error ModuleNotFoundError: No module named 'todos\\list'...

Removed "DropBucket - Serverless file sharing" : URL => 404

I'm following [this example.](https://github.com/serverless/examples/tree/master/aws-node-auth0-custom-authorizers-api) What would be the recommended way to store and access the public key in production? Check it in to version control? I know that I can...

Provider: AWS I have the following resource in serverless.yml ```yml resources: Resources: MyQueue: Type: AWS::SQS::Queue Properties: QueueName:${self:provider.stage}_my_queue ``` What I need to do is to reference an environment variable from...