abcVideo 플레이어 소스 (client / server / shared / pythonsource / docs / .claude). .gitignore 적용으로 node_modules·storage·samplevideo·미디어 등 대용량 일괄 제외. 103 files, ~964K. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
23 lines
811 B
JavaScript
23 lines
811 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "abcVideo",
|
|
script: "server/dist/server/src/app.js",
|
|
cwd: "/home/ccp/service/abcVideo",
|
|
interpreter: "node",
|
|
env: {
|
|
PORT: 55173,
|
|
VIDEOS_DIR: "/home/ccp/service/abcVideo/samplevideo",
|
|
HLS_DIR: "/home/ccp/service/abcVideo/storage/hls",
|
|
FRAMES_DIR: "/home/ccp/service/abcVideo/storage/frames",
|
|
THUMBNAILS_DIR: "/home/ccp/service/abcVideo/storage/thumbnails",
|
|
DB_PATH: "/home/ccp/service/abcVideo/storage/annotations.db",
|
|
FFMPEG_PATH: "/home/ccp/.local/bin/ffmpeg",
|
|
FFPROBE_PATH: "/home/ccp/.local/bin/ffprobe",
|
|
GEO_DATA_DIR: "/home/ccp/service/abcVideo/samplevideo",
|
|
CENTER_CSV_PATH: "/home/ccp/service/abcVideo/pythonsource/input/center.csv"
|
|
}
|
|
}
|
|
]
|
|
}
|