run_server.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 
00003 from web_interface import app
00004 import sys
00005 
00006 port = 5000 if len(sys.argv)==1 else int(sys.argv[1])
00007 print "Running web server on port {0}".format(port)
00008 app.run(host='0.0.0.0', debug=True, port=port)
00009 
00010 


semantic_model_web_interface
Author(s): Bhaskara Marthi
autogenerated on Thu Dec 12 2013 12:39:31