Skip to content

Commit

Permalink
More and more
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich Jones committed Mar 25, 2016
1 parent d6cea95 commit 2ec64e2
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="http://i.imgur.com/oePnHJn.jpg" alt="Zappa Rocks!"/>
</p>

## Zappa - Serverless Python Web Services
# Zappa - Serverless Python Web Services

[![Build Status](https://travis-ci.org/Miserlou/Zappa.svg)](https://travis-ci.org/Miserlou/Zappa)
[![Coverage](https://img.shields.io/coveralls/Miserlou/Zappa.svg)](https://coveralls.io/github/Miserlou/Zappa)
Expand Down Expand Up @@ -82,20 +82,20 @@ to change Zappa"s behavior. Use these at your own risk!
```javascript
{
"dev": {
"aws_region": "us-east-1", # AWS Region (default US East),
"domain": "yourapp.yourdomain.com", # Required if you"re using a domain
"http_methods": ["GET", "POST"], # HTTP Methods to route,
"integration_response_codes": [200, 301, 404, 500], # Integration response status codes to route
"memory_size": 512, # Lambda function memory in MB
"method_response_codes": [200, 301, 404, 500], # Method response status codes to route
"parameter_depth": 10, # Size of URL depth to route. Defaults to 5.
"role_name": "MyLambdaRole", # Lambda execution Role
"s3_bucket": "dev-bucket", # Zappa zip bucket,
"settings_file": "~/Projects/MyApp/settings/dev_settings.py", # Server side settings file location,
"touch": false, # GET the production URL upon initial deployment (default True)
"use_precompiled_packages": false, # If possible, use C-extension packages which have been pre-compiled for AWS Lambda
"vpc_config": { # Optional VPC configuration for Lambda function
"SubnetIds": [ "subnet-12345678" ], # Note: not all availability zones support Lambda!
"aws_region": "us-east-1", // AWS Region (default US East),
"domain": "yourapp.yourdomain.com", // Required if you're using a domain
"http_methods": ["GET", "POST"], // HTTP Methods to route,
"integration_response_codes": [200, 301, 404, 500], // Integration response status codes to route
"memory_size": 512, // Lambda function memory in MB
"method_response_codes": [200, 301, 404, 500], // Method response status codes to route
"parameter_depth": 10, / Size of URL depth to route. Defaults to 5.
"role_name": "MyLambdaRole", // Lambda execution Role
"s3_bucket": "dev-bucket", // Zappa zip bucket,
"settings_file": "~/Projects/MyApp/settings/dev_settings.py", // Server side settings file location,
"touch": false, // GET the production URL upon initial deployment (default True)
"use_precompiled_packages": false, // If possible, use C-extension packages which have been pre-compiled for AWS Lambda
"vpc_config": { // Optional VPC configuration for Lambda function
"SubnetIds": [ "subnet-12345678" ], // Note: not all availability zones support Lambda!
"SecurityGroupIds": [ "sg-12345678" ]
}
}
Expand Down

0 comments on commit 2ec64e2

Please sign in to comment.