mirror of
https://github.com/strapi/strapi.git
synced 2025-07-15 13:02:42 +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
19 lines
394 B
JavaScript
19 lines
394 B
JavaScript
module.exports = ({ env }) => ({
|
|
// autoOpen: false,
|
|
auth: {
|
|
secret: env('ADMIN_JWT_SECRET', 'example-token'),
|
|
},
|
|
apiToken: {
|
|
salt: env('API_TOKEN_SALT', 'example-salt'),
|
|
},
|
|
transfer: {
|
|
token: {
|
|
salt: env('TRANSFER_TOKEN_SALT', 'example-salt'),
|
|
},
|
|
},
|
|
flags: {
|
|
nps: env.bool('FLAG_NPS', true),
|
|
promoteEE: env.bool('FLAG_PROMOTE_EE', true),
|
|
},
|
|
});
|