-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.docker.example
More file actions
29 lines (24 loc) · 1.04 KB
/
Copy path.env.docker.example
File metadata and controls
29 lines (24 loc) · 1.04 KB
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
# Docker Compose environment file
# This file is used by docker-compose.yml to set environment variables
# for both the frontend and backend containers.
# Database settings
POSTGRES_USER=toban_admin
POSTGRES_PASSWORD=postgres
POSTGRES_DB=tobancv
# Supabase settings (replace with your own values)
SUPABASE_URL=your_supabase_url
SUPABASE_KEY=your_supabase_service_role_key
SUPABASE_JWT_SECRET=your_supabase_jwt_secret
SUPABASE_ANON_KEY=your_supabase_anon_key
# OpenRouter API key (replace with your own value)
OPENROUTER_API_KEY=your_openrouter_api_key
# Optional: Integration settings
# Note: Slack credentials are now entered directly in the UI and no longer need to be set as environment variables
# GITHUB_CLIENT_ID=your_github_client_id
# GITHUB_CLIENT_SECRET=your_github_client_secret
# NOTION_API_KEY=your_notion_api_key
# NGROK_URL=https://your-ngrok-domain.ngrok-free.app # Full HTTPS URL for API_URL
# IMPORTANT: When using ngrok, you must run Docker with the --env-file flag:
# ./docker-dev.sh start
# or
# docker compose --env-file .env.docker up -d