update kitchensink config

This commit is contained in:
Pierre Noël 2022-02-09 18:02:55 +01:00
parent 20e6d9a94b
commit 9e21f01a46
2 changed files with 5 additions and 4 deletions

View File

@ -3,4 +3,7 @@ module.exports = ({ env }) => ({
auth: {
secret: env('ADMIN_JWT_SECRET', 'example-token'),
},
apiToken: {
salt: env('API_TOKEN_SALT', 'example-salt'),
},
});

View File

@ -1,10 +1,8 @@
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
admin: {
auth: {
secret: env('ADMIN_JWT_SECRET', '6f75e424d1a0307077c294fcc3c7d78d'),
},
app: {
keys: env.array('APP_KEYS', ['toBeModified1', 'toBeModified2']),
},
app: {
keys: env.array('APP_KEYS', ['toBeModified1', 'toBeModified2']),