| 123456789101112131415161718 |
- #!/usr/bin/env python3
- # -*- coding:utf-8 -*-
- """
- Mysql数据库连接
- """
- MYSQL_HOST = 'rm-t4n6rz18y4t5x47y70o.mysql.singapore.rds.aliyuncs.com'
- MYSQL_PORT = 3036
- MYSQL_DB = 'brand_cultivation'
- MYSQL_USER = 'BrandCultivation'
- MYSQL_PASSWD = '8BfWBc18NBXl#CMd'
- """
- Redis数据库连接
- """
- REDIS_HOST = 'r-t4nb4n9i8je7u6ogk1pd.redis.singapore.rds.aliyuncs.com'
- REDIS_PORT = 5000
- REDIS_DB = 10
- REDIS_PASSWD = 'gHmNkVBd88sZybj'
|