# coding: utf-8 """ tcc-dac.run ~~~~~~~~~~~~~~~ tcc-dac website test run module. :copyright: (c) 2015 by Vito. :license: GNU, see LICENSE for more details. """ from dac.app import create_app application = create_app() if __name__ == '__main__': application.run('0.0.0.0', 8080, debug=True)
# coding: utf-8 """ tcc-dac.wsgi ~~~~~~~~~~~~ tcc-dac website wsgi module. :copyright: (c) 2015 by Vito. :license: GNU, see LICENSE for more details. """ from dac.app import create_app from dac import config_override application = create_app(config_override=config_override) if __name__ == '__main__': application.run('0.0.0.0', 8080, debug=True)
# coding: utf-8 """ tcc-dac.wsgi ~~~~~~~~~~~~ tcc-dac website wsgi module. :copyright: (c) 2015 by Vito. :license: GNU, see LICENSE for more details. """ from dac.app import create_app from dac import config_override application = create_app(config_override=config_override) if __name__ == '__main__': application.run('192.168.1.133', 8080, debug=True)