First commit

This commit is contained in:
2020-12-04 20:12:49 +01:00
commit c22da63747
19 changed files with 11010 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
admin: {
auth: {
secret: env('ADMIN_JWT_SECRET', '71b106d7b2a4853774b0b27424b77097'),
},
},
});