Skip to content

Commit

Permalink
zappa settings - added domains
Browse files Browse the repository at this point in the history
  • Loading branch information
Mislav Cimperšak committed Oct 17, 2017
1 parent 1cafd52 commit 0fad0ba
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions zappa_settings.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
{
"prod": {
"common": {
"app_function": "app.__hug_wsgi__",
"s3_bucket": "excuse-generator",
"aws_region": "eu-central-1",
"profile_name": "mislavcimpersak",
"s3_bucket": "excuse-generator",
"route53_enabled": false,
"certificate_arn": "arn:aws:acm:us-east-1:500819636056:certificate/3edb9c1c-12c5-4601-89a9-dc42df840fa6"
},
"prod": {
"extends": "common",
"aws_environment_variables": {
"DEPLOY_STAGE": "prod"
}
},
"domain": "function.xkcd-excuse.com"
},
"dev": {
"extends": "prod",
"extends": "common",
"debug": true,
"aws_environment_variables": {
"DEPLOY_STAGE": "dev"
}
},
"domain": "function-dev.xkcd-excuse.com"
}
}

0 comments on commit 0fad0ba

Please sign in to comment.