https://github.com/NVIDIA/DIGITS
Raw File
Tip revision: 06e944880b198b6b21f3f326240c471179660f6d authored by Luke Yeager on 20 April 2015, 17:14:40 UTC
Validation set should be optional
Tip revision: 06e9448
digits-server
#!/bin/bash
# Copyright (c) 2014-2015, NVIDIA CORPORATION.  All rights reserved.

# set level
if [ -z "$DIGITS_LEVEL" ]
then
    DIGITS_LEVEL=system
fi

DIGITS_LEVEL=$DIGITS_LEVEL $(command -v python) $(command -v gunicorn) \
    --config gunicorn_config.py \
    digits.webapp:app
back to top