mirror of https://github.com/jumpserver/jumpserver
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.
15 lines
303 B
15 lines
303 B
# -*- coding: utf-8 -*-
|
|
#
|
|
import os
|
|
|
|
from .conf import ConfigManager
|
|
|
|
__all__ = ['BASE_DIR', 'PROJECT_DIR', 'VERSION', 'CONFIG']
|
|
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
PROJECT_DIR = os.path.dirname(BASE_DIR)
|
|
VERSION = '2.0.0'
|
|
CONFIG = ConfigManager.load_user_config()
|
|
|
|
|