config_mysql.yml 991 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. app:
  2. # 应用名称
  3. name: '铁路造价智能化工具'
  4. version: '2020' # 应用版本 2020|2024
  5. use_version: true
  6. source_path: './temp_files'
  7. task_api_url: 'http://{host}:{port}/api/v1'
  8. task_max_projects:20 # 最大项目数同时运行
  9. task_interval: 60 # 秒
  10. db:
  11. sqlserver_mian_2024:
  12. driver: '{FreeTDS}'
  13. server:
  14. username:
  15. password:
  16. database: RecoData2024
  17. trusted_connection: false
  18. sqlserver_mian_2020:
  19. driver: '{FreeTDS}'
  20. server:
  21. username:
  22. password:
  23. database: RecoData2020
  24. trusted_connection: false
  25. trusted_connection: false
  26. # MySQL 配置
  27. mysql_main:
  28. db: iwb_railway_costing_v1
  29. host: railway_costing-mysql
  30. port: 3306
  31. user: root
  32. password: 12345654321
  33. charset: utf8mb4
  34. iwb_railway_costing_v1:
  35. db: iwb_railway_costing_v1
  36. host: railway_costing-mysql
  37. port: 3306
  38. user: root
  39. password: 12345654321
  40. charset: utf8mb4
  41. logger:
  42. file_path: './logs/'
  43. level: 'info'