demo/pythonweb/www/config_default.py

22 lines
306 B
Python

# python3 by 121
# -*- coding: utf-8 -*-
'''
Default configurations.
'''
configs = {
'debug': True,
'db': {
'host': '127.0.0.1',
'port': 3306,
'user': 'root',
'password': 'root',
'db': 'awesome'
},
'session': {
'secret': 'Awesome'
}
}