Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings.py 410B

1234567891011121314151617181920212223
  1. #-*- coding:utf8 -*-
  2. import pymysql
  3. name = 'LODEL2_INSTANCE_NAME'
  4. lodel2_lib_path = 'LODEL2_LIB_ABS_PATH'
  5. debug = False
  6. emfile = 'em.json'
  7. dynamic_code = 'dynleapi.py'
  8. ds_package = 'MySQL'
  9. mh_classname = 'MysqlMigrationHandler'
  10. datasource = {
  11. 'default': {
  12. 'module': pymysql,
  13. 'host': '127.0.0.1',
  14. 'user': 'DBUSER',
  15. 'passwd': 'DBPASSWORD',
  16. 'db': 'DBNAME'
  17. }
  18. }