-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzappa_settings.example.json
38 lines (38 loc) · 1.03 KB
/
zappa_settings.example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"event": {
"apigateway_enabled": false,
"events": [{
"function": "scheduled.reminder",
"expression": "cron(20 16 ? * MON-FRI *)"
}],
"aws_region": "us-east-1",
"aws_environment_variables" : {
"SLACK_API_TOKEN": "",
"BITBUCKET_USER": "",
"BITBUCKET_PASS": ""
},
"exclude": [
"__pycache__",
".git",
".gitignore",
".Python",
".python-version",
"LICENSE",
"README.md",
"zappa_settings.json"
],
"keep_warm": false,
"lambda_description": "Bitreminder for Slack",
"memory_size": 128,
"num_retained_versions": 3,
"profile_name": "default",
"project_name": "bitreminder",
"runtime": "python3.6",
"s3_bucket": "bitreminder-zappa",
"timeout_seconds": 30,
"vpc_config": {
"SubnetIds": [ "" ],
"SecurityGroupIds": [ "" ]
}
}
}