예제 #1
0
파일: run.py 프로젝트: haostruggle/TCC3
# coding:utf-8
"""
    run
    ~~~~~~~~~~~~~~~~~~~~

    tcc3sso run
    :copyright: (c) 2015 by Vito.
    :license: GNU, see LICENSE for more details.
"""

from tcc3sso import create_app

application = create_app()


if __name__ == '__main__':
    application.run("127.0.0.1", 9001, debug=True)
예제 #2
0
파일: run.py 프로젝트: Vito2015/tcc3-sso
# coding:utf-8
"""
    run
    ~~~~~~~~~~~~~~~~~~~~

    tcc3sso run
    :copyright: (c) 2015 by Vito.
    :license: GNU, see LICENSE for more details.
"""

from tcc3sso import create_app

application = create_app()


if __name__ == '__main__':
    application.run("0.0.0.0", 9001, debug=True)
예제 #3
0
파일: wsgi.py 프로젝트: Vito2015/tcc3-sso
# coding:utf-8
"""
    wsgi
    ~~~~

    tcc3sso wsgi interface.
    :copyright: (c) 2015 by Vito.
    :license: GNU, see LICENSE for more details.
"""

from tcc3sso import create_app, settings_override

application = create_app(settings_override=settings_override)


if __name__ == '__main__':
    application.run("0.0.0.0", 9001, debug=True)