PowerDNS-Admin/run.py
Felix Kaechele 1712f26470 Change shebang lines to work universally
Using env enables the scripts to run in virtualenv as well as in a
differently named or bare environment.

Signed-off-by: Felix Kaechele <felix@kaechele.ca>
2016-09-17 06:49:23 -07:00

12 lines
226 B
Python
Executable file

#!/usr/bin/env python
from app import app
from config import PORT
try:
from config import BIND_ADDRESS
except:
BIND_ADDRESS = '127.0.0.1'
if __name__ == '__main__':
app.run(debug = True, host=BIND_ADDRESS, port=PORT)