1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
gh-webhook-actor/app/server.py

15 lines
293 B
Python

#!/usr/bin/env python3
import logging
from flask import Flask
from github_webhook import Webhook
import config
logging.basicConfig(level=logging.INFO)
app = Flask(__name__)
webhook = Webhook(app, secret=config.GITHUB_WEBHOOK_SECRET)
if __name__ == "__main__":
app.run(host="0.0.0.0")