engine_x_mgmt/config/config.py

24 lines
532 B
Python
Raw Normal View History

2022-10-18 00:19:05 +02:00
# Checkout the Variables bellow
# Special lines:
# # => Comented lines, they get ignored by python
# #- => Optional Configuration lines
# Variables
## Database Variables
db = {}
2022-10-18 23:38:33 +02:00
db['root_pw'] = 'RootPassWord'
2022-10-18 00:19:05 +02:00
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
2022-10-25 23:10:51 +02:00
#- db['host'] = localhost
## Api Configuration
api = {}
#- api['ip'] = '0.0.0.0'
#- api['port'] = 81