summaryrefslogtreecommitdiff
path: root/appsettings.json
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2024-03-22 15:47:29 +0000
committerIan C <ianc@noddybox.co.uk>2024-03-22 15:47:29 +0000
commit1f61b2afecb32b5d75268642a49ce9556f505796 (patch)
tree617cc8e789fb63f9123a6e6f53a9bafa6cc38bb6 /appsettings.json
Inital commit of dotnet new
Diffstat (limited to 'appsettings.json')
-rw-r--r--appsettings.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/appsettings.json b/appsettings.json
new file mode 100644
index 0000000..ad60b35
--- /dev/null
+++ b/appsettings.json
@@ -0,0 +1,12 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "ConnectionStrings": {
+ "download": "Host=db_host;Database=postgres;Username=db_unsername;Password=db_password;"
+ },
+ "AllowedHosts": "*"
+}