Files
i2p.www/runserver.py
kytv f49d126a78 Explicitly add default host & port to app.run function
I decidedto add this because the way to change the host & port may not be
immediately obvious to everyone.
2013-09-08 02:17:32 +00:00

6 lines
123 B
Python
Executable File

#!env/bin/python
from i2p2www import app
if __name__ == '__main__':
app.run(host='127.0.0.1', port=5000, debug=False)