1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-11-25 23:06:55 +01:00
lodel2_mirror/settings_local.py.example
2016-01-07 13:54:36 +01:00

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'
}
}