feat: add gmail integration for searching and reply to emails (#34)

* Add gmail integration for google verification

* Fix npm run build
This commit is contained in:
Abhishek 2025-10-21 12:11:34 +05:30 committed by GitHub
parent b9d1720d94
commit 6503d806c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 407 additions and 5 deletions

View file

@ -15,7 +15,7 @@ BASE_LOG_DIR="$BASE_DIR/logs" # Base logs directory
TIMESTAMP=$(date +"%Y%m%d_%H%M%S")
LOG_DIR="$BASE_LOG_DIR/$TIMESTAMP" # Timestamped log directory
LATEST_LINK="$BASE_LOG_DIR/latest" # Symlink to latest logs
VENV_PATH="$BASE_DIR/venv"
VENV_PATH="$(dirname "$BASE_DIR")/venv"
ARQ_WORKERS=${ARQ_WORKERS:-1}