appsettings.json 704 B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "https://gitee.com/dotnetchina/Furion/raw/v4/schemas/v4/furion-schema.json",
  3. "Logging": {
  4. "LogLevel": {
  5. "Default": "Information",
  6. "Microsoft.AspNetCore": "Warning",
  7. "Microsoft.EntityFrameworkCore": "Information"
  8. }
  9. },
  10. "AllowedHosts": "*",
  11. "ConnectionConfigs": [
  12. {
  13. "ConnectionString": "Data Source=./Furion.db",
  14. "DbType": "Sqlite",
  15. "IsAutoCloseConnection": true
  16. }
  17. ],
  18. "AppInfo": {
  19. "RedisConConfig": "127.0.0.1:6379,defaultDatabase=0"
  20. },
  21. "ConnectionStrings": {
  22. "BaseNetDB": "Database=gpt;Data Source=127.0.0.1;Port=8889;User Id=root;Password=123456;Charset=utf8;TreatTinyAsBoolean=false;"
  23. }
  24. }