예제 #1
0
def cli(host, verbose):
    """
    Floyd CLI interacts with FloydHub server and executes your commands.
    More help is available under each command listed below.
    """
    floyd.floyd_host = host
    configure_logger(verbose)
    check_cli_version()
예제 #2
0
def cli(verbose):
    """
    Floyd CLI interacts with FloydHub server and executes your commands.
    More help is available under each command listed below.
    """
    floyd.floyd_host = floyd.floyd_web_host = "https://dev.floydhub.com"
    floyd.tus_server_endpoint = "https://upload-v2-dev.floydhub.com/api/v1/upload/"
    configure_logger(verbose)
    check_cli_version()
예제 #3
0
def cli(verbose):
    """
    Floyd CLI interacts with Floyd server and executes your commands.
    More help is available under each command listed below.
    """
    floyd.floyd_host = floyd.floyd_web_host = "https://dev.floydhub.com"
    floyd.floyd_proxy_host = "https://dev.floydhub.com:8000"
    configure_logger(verbose)
    check_cli_version()
예제 #4
0
파일: local.py 프로젝트: rmdort/floyd-cli
def cli(verbose):
    """
    Floyd CLI interacts with FloydHub server and executes your commands.
    More help is available under each command listed below.
    """
    floyd.floyd_host = "http://localhost:8080"
    floyd.floyd_web_host = "http://localhost:3000"
    floyd.tus_server_endpoint = "http://localhost:1080"
    configure_logger(verbose)
    check_cli_version()
예제 #5
0
파일: main.py 프로젝트: oldas1/floyd-cli
def cli(host, verbose):
    """
    Floyd CLI interacts with FloydHub server and executes your commands.
    More help is available under each command listed below.
    """
    import raven
    raven.Client(
        dsn='https://*****:*****@sentry.io/226940',
        release=get_cli_version(),
        environment='prod',
        processors=('raven.processors.SanitizePasswordsProcessor',))

    floyd.floyd_host = host
    configure_logger(verbose)
    check_cli_version()
예제 #6
0
def cli(host, verbose):
    """
    Floyd CLI interacts with FloydHub server and executes your commands.
    More help is available under each command listed below.
    """
    import raven
    raven.Client(
        dsn=
        'https://*****:*****@sentry.io/226940',
        release=pkg_resources.require("floyd-cli")[0].version,
        environment='prod')

    floyd.floyd_host = host
    configure_logger(verbose)
    check_cli_version()