dispatch.sr.ht/run.py

12 lines
296 B
Python
Raw Normal View History

2018-03-04 03:42:02 +01:00
from dispatchsrht.app import app
from srht.config import cfg, cfgi
import os
app.static_folder = os.path.join(os.getcwd(), "static")
if __name__ == '__main__':
2018-09-03 20:17:51 +02:00
app.run(host=cfg("dispatch.sr.ht", "debug-host"),
port=cfgi("dispatch.sr.ht", "debug-port"),
2018-03-04 03:42:02 +01:00
debug=True)