Hi jy1989
Yes, you have the option to modify a configuration setting.
In the context of using Docker, there is a configuration folder that is typically established during the image build process. You can find more details in the Strapi documentation under the Docker installation section: Strapi Docker Documentation.
Within this configuration folder, there is a file named ‘admin.js’. Below is the relevant section of the file:
module.exports = ({ env }) => ({
auth: {
secret: env('ADMIN_JWT_SECRET'),
},
apiToken: {
salt: env('API_TOKEN_SALT'),
},
transfer: {
token: {
salt: env('TRANSFER_TOKEN_SALT'),
},
},
flags: {
nps: env.bool('FLAG_NPS', true),
promoteEE: env.bool('FLAG_PROMOTE_EE', true),
},
});
In this code, you can adjust the “promoteEE” flag from its default value of true to false.
promoteEE: purchase promotion for enterprise edition
nps: Net Promoter Score (customer loyalty score)
Adminpanel Config
I can’t say anything about other configurations which doesn’t use docker sadly. But in my case this flag helped.
Greetings ^^