init strapi
This commit is contained in:
parent
4b83deb21a
commit
cf29fc8128
22 changed files with 17083 additions and 198 deletions
17
projects/cms/config/admin.ts
Normal file
17
projects/cms/config/admin.ts
Normal file
|
@ -0,0 +1,17 @@
|
|||
export default ({ 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),
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue