Make app registry off by default

This commit is contained in:
Joseph Schorr 2017-03-23 12:01:59 -04:00
parent 7d66f30d52
commit e204f7784c
2 changed files with 3 additions and 1 deletions

View file

@ -232,7 +232,7 @@ class DefaultConfig(object):
FEATURE_SIGNING = False
# Feature Flag: Whether to enable support for App repositories.
FEATURE_APP_REGISTRY = True
FEATURE_APP_REGISTRY = False
# The namespace to use for library repositories.
# Note: This must remain 'library' until Docker removes their hard-coded namespace for libraries.

View file

@ -92,3 +92,5 @@ class TestConfig(DefaultConfig):
RECAPTCHA_SITE_KEY = 'somekey'
RECAPTCHA_SECRET_KEY = 'somesecretkey'
FEATURE_APP_REGISTRY = True