PowerDNS-Admin/run.py

7 lines
128 B
Python
Raw Normal View History

2015-12-13 10:34:12 +01:00
#!flask/bin/python
from app import app
2015-12-14 10:38:47 +01:00
from config import PORT
2015-12-13 10:34:12 +01:00
if __name__ == '__main__':
2015-12-14 10:38:47 +01:00
app.run(debug = True, port=PORT)