From 96d12f59399f865306fb041e191df55684be58c4 Mon Sep 17 00:00:00 2001 From: MAHaines Date: Mon, 14 Jul 2025 00:18:04 -0500 Subject: [PATCH] Add environment variables template --- .env.example | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..fad4f42 --- /dev/null +++ b/.env.example @@ -0,0 +1,27 @@ +# Discord Bot Configuration +DISCORD_TOKEN=your_discord_bot_token_here +CLIENT_ID=your_bot_client_id_here +GUILD_ID=your_guild_id_here + +# Database Configuration +POSTGRES_DB=voice_translator +POSTGRES_USER=postgres +POSTGRES_PASSWORD=your_secure_postgres_password +POSTGRES_URL=postgresql://postgres:your_secure_postgres_password@postgres:5432/voice_translator + +# Whisper Configuration +WHISPER_MODEL=large-v2 + +# Translation API Keys +GOOGLE_TRANSLATE_API_KEY=your_google_translate_api_key +DEEPL_API_KEY=your_deepl_api_key +AZURE_TRANSLATOR_KEY=your_azure_translator_key +AZURE_TRANSLATOR_REGION=your_azure_region + +# Admin Interface Configuration +PGADMIN_EMAIL=admin@example.com +PGADMIN_PASSWORD=your_pgadmin_password + +# Optional: Additional Configuration +NODE_ENV=production +LOG_LEVEL=info