mirror of
https://github.com/cxchency/manosaba-character-composer.git
synced 2026-01-13 11:28:39 +08:00
10 lines
214 B
Python
10 lines
214 B
Python
import sys
|
|
DEBUGPY = None
|
|
if "debugpy" in sys.modules:
|
|
import debugpy
|
|
DEBUGPY = debugpy
|
|
|
|
HOST = "0.0.0.0"
|
|
PORT = 5005
|
|
BASE_DIR = r"characters" # 角色数据目录
|
|
PROFILE_DIR = r"profiles" # 头像目录 |