mirror of
https://github.com/kemko/PowerDNS-Admin.git
synced 2026-01-01 15:45:45 +03:00
8 lines
203 B
Python
Executable File
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)
|