config.py 300 B

123456789101112131415
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. @author: Deepcold
  5. @file: config.py
  6. @time: 2019/8/20 11:16
  7. """
  8. import os
  9. SOURCE_ROOT = os.path.abspath(os.path.dirname(__file__))
  10. CONFIG_DICT = {
  11. "develop": "config_dev.yaml",
  12. "product": "config_prd.yaml",
  13. "testing": "config_test.yaml"}