mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
1ffaf904b2
Remove use_reloader
8 lines
183 B
Python
Executable File
8 lines
183 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)
|