mirror of
https://github.com/aljazceru/vibeline.git
synced 2026-01-13 19:44:22 +01:00
15 lines
257 B
Bash
Executable File
15 lines
257 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
|
|
source vibenv/bin/activate
|
|
|
|
# Run the watch script
|
|
python src/watch_voice_memos.py
|