Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 715 Bytes

README.md

File metadata and controls

34 lines (28 loc) · 715 Bytes

RESTful API application for Github Webhook

SMTP Credentials

Informations for smtp will be saved in secrets.json, which is ignored by gitignore.

Currently only supports Gmail smtp with IMAP.

It's internal format should look like this.

{
    "smtp": {
        "imap_server": "imap.gmail.com",
        "imap_port": 993,
        "smtp_server": "smtp.gmail.com",
        "smtp_port": 587,
        "username": "[email protected]",
        "password": "your_app_password",
        "display_name": "your_display_name"
    },
    "emails":{
        "recipients":[
            "[email protected]"
        ]
    },
    "branches":{
        "overwatch":[
            "main"
        ]
    }
}