script edits

This commit is contained in:
t0is 2025-02-20 22:15:33 +01:00
parent fb23986fdb
commit ae578c045c
2 changed files with 13 additions and 8 deletions

View File

@ -5,9 +5,11 @@ services:
- CHANNEL_LANGUAGE=en
- TWITCH_CLIENT_ID=a0fuj6tm5ct79clvim9816orphqkov
- TWITCH_CLIENT_SECRET=h7whj3yspxgj1909sgcafx6iz1p1es
build:
context: .
image: twitch-scanner:latest
volumes:
- ./clips:/app/clips
- ./models:/app/models
- ./transcripts:/app/transcripts
- /shared/transcriptor/clips:/app/clips
- /shared/transcriptor/vods:/app/vods
- /shared/transcriptor/audio:/app/audio
- /shared/transcriptor/chat:/app/chat
- /shared/transcriptor/models:/app/models
- /shared/transcriptor/transcripts:/app/transcripts

View File

@ -21,9 +21,12 @@ for channel in channels:
"TWITCH_CLIENT_SECRET=h7whj3yspxgj1909sgcafx6iz1p1es"
],
"volumes": [
"./clips:/app/clips", # Shared clips folder on the host
"./models:/app/models",
"./transcripts:/app/transcripts"
"/shared/transcriptor/clips:/app/clips", # Shared clips folder on the host
"/shared/transcriptor/vods:/app/vods",
"/shared/transcriptor/audio:/app/audio",
"/shared/transcriptor/chat:/app/chat",
"/shared/transcriptor/models:/app/models",
"/shared/transcriptor/transcripts:/app/transcripts"
]
}