...
 
Commits (2)
......@@ -594,14 +594,26 @@ data:
'minds',
]);
# Bool values without quotes
# true | false
# or quoted strings
# '"canary"' | '"admin"'
$CONFIG->set('features', [
'blockchain_creditcard' => false,
'suggested-users' => false,
'helpdesk' => true,
'top-feeds' => true,
'es-feeds' => true,
'cassandra-notifications' => true,
'blockchain_creditcard' => {{ .Values.features.blockchain_creditcard }},
'suggested-users' => {{ .Values.features.suggested_users }},
'helpdesk' => {{ .Values.features.helpdesk }},
'top-feeds' => {{ .Values.features.top_feeds }},
'es-feeds' => {{ .Values.features.es_feeds }},
'cassandra-notifications' => {{ .Values.features.cassandra_notifications }},
'allow-comments-toggle' => {{ .Values.features.allow_comments_toggle }},
'permissions' => {{ .Values.features.permissions }},
'wire-multi-currency' => {{ .Values.features.wire_multi_currency }},
]);
$CONFIG->max_video_length = {{ .Values.max_video_length }};
$CONFIG->max_video_file_size = {{ .Values.max_video_file_size }};
$CONFIG->max_daily_boost_views = {{ .Values.max_daily_boost_views }};
php-fpm.conf: |-
[www]
......
......@@ -233,3 +233,26 @@ blockchain:
wireWalletKey:
boostCampaignsWallet: '0xa28c7c4dbe34e36d9c21bb84ab3df10fdf8f898e'
boostCampaignsWalletKey:
# Bool values without quotes
# true | false
# or quoted strings
# '"canary"' | '"admin"'
features:
allow_comments_toggle: true
blockchain_creditcard: true
dark_mode: true
cassandra_notifications: true
es_feeds: true
helpdesk: true
permissions: true
suggested_users: true
top_feeds: true
wire_multi_currency: true
# Bytes
max_video_file_size: '4294967296'
# Seconds
max_video_length: 12600
max_daily_boost_views: 10000