db_config_example.py 697 B

12345678910111213141516171819202122232425
  1. TORTOISE_ORM = {
  2. "connections": {
  3. "default": {
  4. "engine": "tortoise.backends.mysql",
  5. "credentials": {
  6. "host": "127.0.0.1",
  7. "port": 3306,
  8. "user": "gitnexus",
  9. "password": "",
  10. "database": "gitnexus",
  11. "minsize": 3, # 最小连接数
  12. "maxsize": 20, # 最大连接数
  13. "charset": "utf8mb4"
  14. }
  15. }
  16. },
  17. "apps": {
  18. "models": {
  19. "models": ["models.gitModels"], # 包含模型文件
  20. "default_connection": "default"
  21. }
  22. },
  23. "use_tz": False,
  24. "timezone": "Asia/Shanghai"
  25. }