mirror of
https://github.com/aljazceru/vibeline.git
synced 2026-01-20 06:54:30 +01:00
* Add dockerfile Add example docker compose Add docker build action Update extract.sh to use faster-whisper Update src/extract.py to check and download ollama models * remove multi-platform build * add vibeline-ui to docker compose * Fix VOICE_MEMOS_DIR variable being ignored in some files * remove requirement for faster-whisper since it comes with whisper-ctranslate2
15 lines
276 B
Bash
Executable File
15 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Load environment variables from .env file
|
|
if [ -f .env ]; then
|
|
source .env
|
|
else
|
|
echo "Warning: .env file not found"
|
|
fi
|
|
|
|
# Activate virtual environment
|
|
[ -d "vibenv" ] && source vibenv/bin/activate
|
|
|
|
# Run the watch script
|
|
python src/watch_voice_memos.py
|