mirror of
https://github.com/cwinfo/yggdrasil-map
synced 2024-11-09 16:00:27 +00:00
take host and port as arguments
This commit is contained in:
parent
9c62cf6404
commit
9925488716
@ -1,6 +1,11 @@
|
|||||||
from flask import Flask, render_template, request
|
from flask import Flask, render_template, request
|
||||||
from graphData import insert_graph_data
|
from graphData import insert_graph_data
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument("--host", type=str, help="host to listen on (default 'localhost')", default="localhost")
|
||||||
|
parser.add_argument("--port", type=int, help="port to listen on (default '3000')", default=3000)
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
app.config.from_pyfile('web_config.cfg')
|
app.config.from_pyfile('web_config.cfg')
|
||||||
|
|
||||||
@ -47,4 +52,5 @@ def add_header(response):
|
|||||||
return response
|
return response
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app.run(host='localhost', port=3000)
|
args = parser.parse_args()
|
||||||
|
app.run(host=args.host, port=args.port)
|
||||||
|
Loading…
Reference in New Issue
Block a user