summaryrefslogtreecommitdiffstats
path: root/run.py
blob: d68c53e674e1a9fea88a4c7c1765d16c87e1985c (plain)
1
2
3
4
5
6
7
8
9
10
11
from git.app import app
from git.config import cfg, cfgi

import os

app.static_folder = os.path.join(os.getcwd(), "static")

if __name__ == '__main__':
    app.run(host=cfg("debug", "debug-host"),
            port=cfgi("debug", "debug-port"),
            debug=True)