mirror of
https://github.com/yweber/lodel2.git
synced 2025-11-25 23:06:55 +01:00
15 lines
273 B
Text
15 lines
273 B
Text
#-*- coding:utf8 -*-
|
|
|
|
import pymysql
|
|
import os
|
|
|
|
base_path = os.path.dirname(os.path.abspath(__file__))
|
|
datasource = {
|
|
'default': {
|
|
'module': pymysql,
|
|
'host': '127.0.0.1',
|
|
'user': 'lodel',
|
|
'passwd': 'lodel',
|
|
'db': 'lodel'
|
|
}
|
|
}
|