Skip to content

Commit

Permalink
Added default config file
Browse files Browse the repository at this point in the history
  • Loading branch information
CraftingDragon007 committed Jul 7, 2023
1 parent b9668a0 commit a568f35
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions KekUploadServer/appsettings.default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://0.0.0.0:5254"
}
}
},"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"KekUploadDb": "Server=localhost;Database=upload;Port=5432;Username=postgres;Password=password;"
},
"MaxExtensionLength": 10,
"IdLength": 12,
"BaseUrl": "http://localhost:5254",
"Description": "KekUpload",
"EmbedColor": "#2BFF00",
"WebRoot": "web",
"ThumbnailDirectory": "thumbs"
}

0 comments on commit a568f35

Please sign in to comment.