mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 12:02:10 +00:00

* Add: promoting EE features in CE projects by default * Add: pages * Update: first review modifications * Update: integrate locked features pages * Update: rename pages + update links to the website * Update: append config to default files * Update: implement flags logic * Update: implement promoteEnterpriseFeatures flag * Update: revamp variable + add doc * Update: add documentation * Delete: ContentTypes.d.ts file
22 lines
465 B
JavaScript
22 lines
465 B
JavaScript
module.exports = ({ env }) => ({
|
|
// autoOpen: false,
|
|
auth: {
|
|
secret: env('ADMIN_JWT_SECRET', 'example-token'),
|
|
},
|
|
apiToken: {
|
|
salt: env('API_TOKEN_SALT', 'example-salt'),
|
|
},
|
|
auditLogs: {
|
|
enabled: env.bool('AUDIT_LOGS_ENABLED', true),
|
|
},
|
|
transfer: {
|
|
token: {
|
|
salt: env('TRANSFER_TOKEN_SALT', 'example-salt'),
|
|
},
|
|
},
|
|
flags: {
|
|
nps: env.bool('FLAG_NPS', true),
|
|
promoteEE: env.bool('FLAG_PROMOTE_EE', true),
|
|
},
|
|
});
|