feat: opt page style

This commit is contained in:
engigu
2025-12-25 09:36:44 +08:00
parent 26d6407961
commit 49f8a4db6c
5 changed files with 440 additions and 212 deletions
+19
View File
@@ -0,0 +1,19 @@
// 应用路径常量
export const PATHS = {
// 脚本文件目录
SCRIPTS_DIR: '/app/data/scripts',
// 数据目录
DATA_DIR: '/app/data',
// 配置目录
CONFIGS_DIR: '/app/configs',
// 环境目录
ENVS_DIR: '/app/envs',
} as const
// 文件扩展名对应的运行命令
export const FILE_RUNNERS: Record<string, string> = {
py: 'python',
js: 'node',
sh: 'bash',
bash: 'bash',
} as const