Adds Example of Secrets File

This commit is contained in:
2023-10-14 22:37:17 -03:00
parent 8bbca8ce71
commit 2e1c246aea
2 changed files with 40 additions and 0 deletions

39
env.example.json Normal file
View File

@@ -0,0 +1,39 @@
{
"backendSecret": {
"tokenSecret": "",
"accessTokenDuration": "",
"refreshTokenDuration": "",
"defaultUserFullName": "",
"defaultUserEmail": "",
"defaultUserUsername": "",
"defaultUserPassword": "",
"googleClientId": "",
"googleClientSecret": "",
"googleRedirectUrl": "",
"githubClientId": "",
"githubClientSecret": "",
"githubRedirectUrl": ""
},
"frontendSecret": {
"frontendPath": "",
"backendUrl": "",
"backendOAuthUrl": ""
},
"postgresSecret": {
"postgresDatabase": "",
"postgresUser": "",
"postgresPassword": ""
},
"redisSecret": {
"redisPassword": ""
},
"storageSecret": {
"storageType": "",
"awsAccessKeyId": "",
"awsSecretAccessKey": "",
"awsRegion": "",
"awsBucket": "",
"virusCheckerType": "",
"virusCheckerApiKey": ""
}
}