Updated config file

The config file was missing the secret field
This commit is contained in:
kdeng00
2023-10-01 10:28:04 -04:00
parent 97ea7262b7
commit 4bb3933bd2
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -7,7 +7,8 @@
}, },
"JWT": { "JWT": {
"Audience": "", "Audience": "",
"Issuer": "" "Issuer": "",
"Secret": ""
}, },
"ConnectionStrings": { "ConnectionStrings": {
"MongoDBURI": "mongodb+srv://<username>:<password>@cluster0.abc.mongodb.net/?retryWrites=true&w=majority" "MongoDBURI": "mongodb+srv://<username>:<password>@cluster0.abc.mongodb.net/?retryWrites=true&w=majority"
+2 -1
View File
@@ -8,7 +8,8 @@
"AllowedHosts": "*", "AllowedHosts": "*",
"JWT": { "JWT": {
"Audience": "", "Audience": "",
"Issuer": "" "Issuer": "",
"Secret": ""
}, },
"ConnectionStrings": { "ConnectionStrings": {
"MongoDBURI": "mongodb+srv://<username>:<password>@cluster0.abc.mongodb.net/?retryWrites=true&w=majority" "MongoDBURI": "mongodb+srv://<username>:<password>@cluster0.abc.mongodb.net/?retryWrites=true&w=majority"