mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-06 11:35:29 +00:00
15 lines
335 B
Python
15 lines
335 B
Python
# 09.06.24
|
|
|
|
import os
|
|
|
|
|
|
# Internal utilities
|
|
from Src.Util._jsonConfig import config_manager
|
|
|
|
|
|
SITE_NAME = os.path.basename(os.path.dirname(os.path.abspath(__file__)))
|
|
ROOT_PATH = config_manager.get('DEFAULT', 'root_path')
|
|
DOMAIN_NOW = config_manager.get_dict('SITE', SITE_NAME)['domain']
|
|
|
|
SERIES_FOLDER = "Serie"
|
|
MOVIE_FOLDER = "Film" |