engine_x_mgmt/config/config.py

24 lines
532 B
Python

# Checkout the Variables bellow
# Special lines:
# # => Comented lines, they get ignored by python
# #- => Optional Configuration lines
# Variables
## Database Variables
db = {}
db['root_pw'] = 'RootPassWord'
db['enabled'] = True
db['user'] = 'DBUser'
db['user_pw'] = 'DBUserPassWord'
db['db'] = 'Database Name'
#- db['data_path_mysql'] = '/var/lib/mysql'
#- db['data_path_mysql_backup'] = '/var/lib/mysql'
#- db['port'] = 3306
#- db['host'] = localhost
## Api Configuration
api = {}
#- api['ip'] = '0.0.0.0'
#- api['port'] = 81