https://github.com/NVIDIA/DIGITS
Raw File
Tip revision: fb90fac56cd37f20929e14ff128f2849c575ce2a authored by Luke Yeager on 24 November 2015, 22:47:02 UTC
Mark v3.0.0-rc.2
Tip revision: fb90fac
digits-server
#!/bin/bash
# Copyright (c) 2014-2015, NVIDIA CORPORATION.  All rights reserved.

set -e

function set_exe {
    # Sets a global variable to the location of an executable
    # Arguments:
    # $1 -- the variable name
    # $2 -- the executable

    # Check to make sure the executable exists
    hash $2 2>/dev/null || { echo >&2 "ERROR: \"$2\" executable not found!"; exit 1; }
    # Print the path to the executable
    local __resultvar=$1
    eval $__resultvar="'$(command -v $2)'"
}

# Some hacking necessary to respect virtualenv installations
set_exe PYTHON_EXE python
set_exe GUNICORN_EXE gunicorn

$PYTHON_EXE $GUNICORN_EXE \
    --config gunicorn_config.py \
    digits.webapp:app \
    $@
back to top