Exemplo n.º 1
0
def run_webserver(name, env):
	conf.configure_flapp(env)
	flapp.logger.debug('Running webserver with config: %s'%flapp.config)
	flapp.run(port = flapp.config['PORT'])
Exemplo n.º 2
0
#!/usr/bin/python
from app import flapp
flapp.run(debug=True, host='0.0.0.0')
Exemplo n.º 3
0
def run_webserver(name, env):
    conf.configure_flapp(env)
    flapp.logger.debug('Running webserver with config: %s' % flapp.config)
    flapp.run(port=flapp.config['PORT'])
Exemplo n.º 4
0
def run_webserver(name, env):
    conf.configure_flapp(env)
    application.logger.debug('Running webserver with config: %s' %
                             application.config)
    application.run()
Exemplo n.º 5
0
def run_webserver(name, env):
	conf.configure_flapp(env)
	application.logger.debug('Running webserver with config: %s'%application.config)
	application.run()