lists.sr.ht/run.py

12 lines
287 B
Python

from listssrht.app import app
from srht.config import cfg, cfgi
import os
app.static_folder = os.path.join(os.getcwd(), "static")
if __name__ == '__main__':
app.run(host=cfg("lists.sr.ht", "debug-host"),
port=cfgi("lists.sr.ht", "debug-port"),
debug=True)