Updated config files

Config files now have JWT store credentials
This commit is contained in:
kdeng00
2023-09-29 19:33:15 -04:00
parent 4c232a500d
commit 36e3722a01
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -5,6 +5,10 @@
"Microsoft.AspNetCore": "Warning" "Microsoft.AspNetCore": "Warning"
} }
}, },
"JWT": {
"Audience": "",
"Issuer": ""
},
"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"
} }
+4
View File
@@ -6,6 +6,10 @@
} }
}, },
"AllowedHosts": "*", "AllowedHosts": "*",
"JWT": {
"Audience": "",
"Issuer": ""
},
"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"
} }