-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.sample
36 lines (31 loc) · 1.41 KB
/
.env.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# PostgreSQL Configuration
POSTGRES_DATABASE="sample_db"
POSTGRES_HOST="your-host.example.com"
POSTGRES_PASSWORD="your_password"
POSTGRES_PRISMA_URL="postgres://user:password@your-host.example.com/sample_db?pgbouncer=true&connect_timeout=15&sslmode=require"
POSTGRES_URL="postgres://user:password@your-host.example.com/sample_db?sslmode=require"
POSTGRES_URL_NON_POOLING="postgres://user:password@your-host.example.com/sample_db?sslmode=require"
POSTGRES_URL_NO_SSL="postgres://user:password@your-host.example.com/sample_db"
POSTGRES_USER="sample_user"
# Supabase Configuration
NEXT_PUBLIC_SUPABASE_ANON_KEY="your_supabase_anon_key"
NEXT_PUBLIC_SUPABASE_URL="https://your-project.supabase.co"
SUPABASE_ANON_KEY="your_supabase_anon_key"
SUPABASE_JWT_SECRET="your_jwt_secret"
SUPABASE_SERVICE_ROLE_KEY="your_service_role_key"
SUPABASE_URL="https://your-project.supabase.co"
# Slack Configuration
SLACK_APP_ID="your_slack_app_id"
SLACK_BOT_USER_OAUTH_TOKEN="xoxb-your-token"
SLACK_CLIENT_ID="your_client_id"
SLACK_CLIENT_SECRET="your_client_secret"
SLACK_SIGNING_SECRET="your_signing_secret"
SLACK_WEBHOOK_URL="https://hooks.slack.com/services/your/webhook/url"
# Telegram Configuration
TELEGRAM_API_TOKEN="your_telegram_token"
TELEGRAM_CHAT_ID="your_chat_id"
# Spotify Configuration
SPOTIFY_CLIENT_ID="your_spotify_client_id"
SPOTIFY_CLIENT_SECRET="your_spotify_client_secret"
# OpenAI Configuration
OPENAI_API_KEY="your_openai_api_key"