diff --git a/digits/config/store_option.py b/digits/config/store_option.py index 09f3e7cee..85eb05c0f 100644 --- a/digits/config/store_option.py +++ b/digits/config/store_option.py @@ -27,7 +27,7 @@ def load_url_list(): if 'DIGITS_MODEL_STORE_URL' in os.environ: url_list = os.environ['DIGITS_MODEL_STORE_URL'] else: - url_list = "" + url_list = "http://developer.download.nvidia.com/compute/machine-learning/modelstore/5.0" return validate(url_list).split(',') diff --git a/docs/Configuration.md b/docs/Configuration.md index 80cab5571..c57573612 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -15,4 +15,4 @@ DIGITS uses environment variables for configuration. | `DIGITS_LOGFILE_FILENAME` | ~/digits.log | File for saving log messages. Default is `$DIGITS_ROOT/digits/digits.log`. | | `DIGITS_LOGFILE_LEVEL` | DEBUG | Minimum log message level to be saved (DEBUG/INFO/WARNING/ERROR/CRITICAL). Default is INFO. | | `DIGITS_SERVER_NAME` | The Big One | The name of the server (accessible in the UI under "Info"). Default is the system hostname. | -| `DIGITS_MODEL_STORE_URL` | http://localhost/modelstore | A list of URL's, separated by comma. | +| `DIGITS_MODEL_STORE_URL` | http://localhost/modelstore | A list of URL's, separated by comma. Default is the official NVIDIA store. |