PowerDNS-Admin/run.py
Chris Pritchard 396ce14b9f
OIDC (#1)
Implemented OIDC using authlib
2018-10-21 23:38:12 +01:00

8 lines
203 B
Python
Executable file

#!/usr/bin/env python3
from app import app
from config import PORT
from config import BIND_ADDRESS
if __name__ == '__main__':
app.run(debug = True, host=BIND_ADDRESS, port=PORT, use_reloader=False)