Esempio n. 1
0
# 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)
Esempio n. 2
0
# 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)
Esempio n. 3
0
# 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)
Esempio n. 4
0
# 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)