mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 06:30:27 +00:00
d12f03c734
Updated minor formatting issue with app's run.py file.
7 lines
222 B
Python
Executable File
7 lines
222 B
Python
Executable File
#!/usr/bin/env python3
|
|
from powerdnsadmin import create_app
|
|
|
|
if __name__ == '__main__':
|
|
app = create_app()
|
|
app.run(debug=True, host=app.config.get('BIND_ADDRESS', '127.0.0.1'), port=app.config.get('PORT', '9191'))
|