๐Ÿ“ฆ llanesluis / AspNet.WebApi.Learn

๐Ÿ“„ appsettings.json ยท 15 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  // 4 - Add the connection string to the appsettings.json file or appsettings.Development.json file
  // "ConnectionStrings" : { "NameOfYourConnection" : "your_connection_string" }
  "ConnectionStrings": {
    "DefaultConnection": "Host=ep-crimson-sunset-a5qyhlv4.us-east-2.aws.neon.tech;Database=neondb;Username=neondb_owner;Password=dC47ZLSFUPst"
  },
  "AllowedHosts": "*"
}