ums.utils.const      
                        This file contains shared constants. See the content ...
1# Agenten Plattform 2# 3# (c) 2024 Magnus Bender 4# Institute of Humanities-Centered Artificial Intelligence (CHAI) 5# Universitaet Hamburg 6# https://www.chai.uni-hamburg.de/~bender 7# 8# source code released under the terms of GNU Public License Version 3 9# https://www.gnu.org/licenses/gpl-3.0.txt 10 11""" 12 This file contains shared constants. 13 See the content ... 14""" 15 16import os 17 18BASE_PATH = '/ums-agenten' 19SHARE_PATH = os.path.join(BASE_PATH, 'share') 20PERSIST_PATH = os.path.join(BASE_PATH, 'persist') 21TEMPLATE_PATH = os.path.join(BASE_PATH, 'plattform', 'web', 'templates')
            BASE_PATH        =
'/ums-agenten'
        
    
    
    
    
                
            SHARE_PATH        =
'/ums-agenten/share'
        
    
    
    
    
                
            PERSIST_PATH        =
'/ums-agenten/persist'
        
    
    
    
    
                
            TEMPLATE_PATH        =
'/ums-agenten/plattform/web/templates'