Example Configuration File

 1{
 2    "AWS_ACCESS_KEY_ID": "... AWS key with write access to video bucket ...",
 3    "AWS_SECRET_ACCESS_KEY": "... AWS secret key with write access to video bucket ...",
 4    "CONTACT_SWITCHES": [
 5          {
 6            "NAME": "... name and pin-out of a GPIO switch...",
 7            "GPIO": 12
 8          }
 9      ],
10    "LOGZ_IO_CODE": "... logz io's logger code ...",
11    "S3_BUCKET_NAME": "... s3 video bucket name ...",
12    "SLACK_APP_SIGNING_SECRET": "... secret value from slack to validate bot messages ...",
13    "SLACK_APP_TOKEN": "... token from slack to allow app to use websockets ...",
14    "SLACK_BOT_TOKEN": "... token from slack...",
15    "SLACK_CHANNEL": "... proper name of slack channel ...",
16    "SLACK_CHANNEL_ID": ".. slack's ID for the channel ...",
17    "TEMPERATURE_SENSORS": {
18        "DHT11": [
19          {
20            "NAME": "... name and pin-out of a GPIO with a DHT11 connected ...",
21            "GPIO": 4
22          }
23        ]
24    }
25}