https://github.com/NVIDIA/DIGITS
Raw File
Tip revision: 5ca299593c8c60f2cec5a6a705369316e2b5bba1 authored by Luke Yeager on 24 July 2015, 01:40:53 UTC
Mark v2.0.0-rc3
Tip revision: 5ca2995
digits-server
#!/bin/bash
# Copyright (c) 2014-2015, NVIDIA CORPORATION.  All rights reserved.

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