Parent: [8405d8] (diff)

Download this file

scweb-standalone.py    18 lines (14 with data), 557 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
import os
import argparse
import scweb
# handle command-line arguments
parser = argparse.ArgumentParser()
parser.add_argument('-a', '--addr', default='127.0.0.1',help='address to bind to [127.0.0.1]')
parser.add_argument('-p', '--port', default='8680', type=int, help='port to listen on [8780]')
args = parser.parse_args()
# change to webui's directory and import
os.chdir(os.path.dirname(__file__))
# set up webui and run in own http server
scweb.bottle.debug(True)
scweb.bottle.run(host=args.addr, port=args.port, reloader=False)