Make app registry off by default
This commit is contained in:
parent
7d66f30d52
commit
e204f7784c
2 changed files with 3 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -92,3 +92,5 @@ class TestConfig(DefaultConfig):
|
|||
|
||||
RECAPTCHA_SITE_KEY = 'somekey'
|
||||
RECAPTCHA_SECRET_KEY = 'somesecretkey'
|
||||
|
||||
FEATURE_APP_REGISTRY = True
|
||||
|
|
Reference in a new issue