Пример #1
0
def start(args):
    """Start the server.

    With no arguments, starts the server in development mode using the
    configuration found in `deveopment.ini` and a hot code reloader enabled.
    """
    if not len(args):  # Default to dev mode
        pserve.ensure_port_cleanup([('0.0.0.0', 5000)])
        args.append('development.ini')
        args.append('--reload')

    pserve.main(['hypothesis'] + args)
Пример #2
0
def start(args):
    """Start the server.

    With no arguments, starts the server in development mode using the
    configuration found in `deveopment.ini` and a hot code reloader enabled.
    """
    if not len(args):  # Default to dev mode
        pserve.ensure_port_cleanup([('0.0.0.0', 5000)])
        args.append('development.ini')
        args.append('--reload')

    pserve.main(['hypothesis'] + args)
Пример #3
0
def start(args):
    """Start the server.

    With no arguments, starts the server in development mode using the
    configuration found in `deveopment.ini` and a hot code reloader enabled.
    """
    if not len(args):  # Default to dev mode
        args.append('development.ini')
        args.append('--reload')
        args.append('--monitor-restart')

    from pyramid.scripts.pserve import ensure_port_cleanup, main

    ensure_port_cleanup([('0.0.0.0', 5000)])
    main(['hypothesis'] + args)
Пример #4
0
Файл: script.py Проект: 3divs/h
def start(args):
    """Start the server.

    With no arguments, starts the server in development mode using the
    configuration found in `deveopment.ini` and a hot code reloader enabled.
    """
    if not len(args):  # Default to dev mode
        args.append('development.ini')
        args.append('--reload')
        args.append('--monitor-restart')

    from pyramid.scripts.pserve import ensure_port_cleanup, main

    ensure_port_cleanup([('0.0.0.0', 5000)])
    main(['hypothesis'] + args)