No Description
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 497B

12345678910111213141516171819202122232425262728
  1. #-*- coding:utf8 -*-
  2. ## @package settings Configuration file
  3. import pymysql
  4. import os
  5. base_path = os.path.dirname(os.path.abspath(__file__))
  6. debug = False
  7. debug_sql = False
  8. datasource = {
  9. 'default': {
  10. 'module':pymysql,
  11. 'host': None,
  12. 'user': None,
  13. 'passwd': None,
  14. 'db': None,
  15. }
  16. }
  17. migration_options = {
  18. 'dryrun': False,
  19. 'foreign_keys': True,
  20. 'drop_if_exists': False,
  21. }
  22. em_graph_format = 'png'
  23. em_graph_output = '/tmp/em_%s_graph.png'