aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_webface.py
blob: c8a39bb93480d63c68e66c382ef815c8a915ac18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3

import argparse
from fatcat_web import app

def main():
    parser = argparse.ArgumentParser()
    parser.add_argument('--debug',
        action='store_true',
        help="enable debugging interface (note: not for everything)")
    parser.add_argument('--host',
        default="127.0.0.1",
        help="listen on this host/IP")
    parser.add_argument('--port',
        type=int,
        default=9810,
        help="listen on this port")
    args = parser.parse_args()

    app.run(debug=args.debug, host=args.host, port=args.port)

if __name__ == '__main__':
    main()