mirror of https://github.com/zulip/zulip.git
settings: Include analytics in default distribution.
This moves the analytics module from being a default-off module that is somewhat difficult to install to being a default part of the Zulip distribution (both tarballs and what is enabled by default).
This commit is contained in:
parent
161522e04c
commit
70e75508ba
|
@ -10,14 +10,12 @@
|
||||||
*.tif binary
|
*.tif binary
|
||||||
.gitignore export-ignore
|
.gitignore export-ignore
|
||||||
.gitattributes export-ignore
|
.gitattributes export-ignore
|
||||||
/analytics export-ignore
|
|
||||||
/static/assets export-ignore
|
/static/assets export-ignore
|
||||||
/bots export-ignore
|
/bots export-ignore
|
||||||
/corporate export-ignore
|
/corporate export-ignore
|
||||||
/static export-ignore
|
/static export-ignore
|
||||||
/tools export-ignore
|
/tools export-ignore
|
||||||
/zilencer export-ignore
|
/zilencer export-ignore
|
||||||
/templates/analytics export-ignore
|
|
||||||
/templates/corporate export-ignore
|
/templates/corporate export-ignore
|
||||||
/templates/zilencer export-ignore
|
/templates/zilencer export-ignore
|
||||||
/puppet/zulip_internal export-ignore
|
/puppet/zulip_internal export-ignore
|
||||||
|
|
|
@ -177,7 +177,10 @@ DEFAULT_SETTINGS = {'TWITTER_CONSUMER_KEY': '',
|
||||||
'DBX_APNS_CERT_FILE': None,
|
'DBX_APNS_CERT_FILE': None,
|
||||||
'DBX_APNS_KEY_FILE': None,
|
'DBX_APNS_KEY_FILE': None,
|
||||||
'PERSONAL_ZMIRROR_SERVER': None,
|
'PERSONAL_ZMIRROR_SERVER': None,
|
||||||
'EXTRA_INSTALLED_APPS': [],
|
# Structurally, we will probably eventually merge
|
||||||
|
# analytics into part of the main server, rather
|
||||||
|
# than a separate app.
|
||||||
|
'EXTRA_INSTALLED_APPS': ['analytics'],
|
||||||
'DEFAULT_NEW_REALM_STREAMS': {
|
'DEFAULT_NEW_REALM_STREAMS': {
|
||||||
"social": {"description": "For socializing", "invite_only": False},
|
"social": {"description": "For socializing", "invite_only": False},
|
||||||
"general": {"description": "For general stuff", "invite_only": False},
|
"general": {"description": "For general stuff", "invite_only": False},
|
||||||
|
|
Loading…
Reference in New Issue