minio对象存储数据库链接

This commit is contained in:
z66
2025-09-12 10:48:17 +08:00
parent 76beaa60bc
commit 6027f0d0e1
10 changed files with 651 additions and 715 deletions
+16
View File
@@ -0,0 +1,16 @@
class Config:
MYSQL_CONFIG = {
'host': 'localhost',
'port': 3306,
'user': 'root',
'password': '123123',
'max_connections': 10
}
MINIO_CONFIG = {
'endpoint': '127.0.0.1:9005',
'access_key': 'admin',
'secret_key': 'abc88888888',
'secure': False # 社区版默认不启用SSL
}