-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
26 lines (22 loc) · 769 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (22 loc) · 769 Bytes
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
# Phoenix
PHOENIX_COLLECTOR_ENDPOINT=http://phoenix:4317
# Agent Database
POSTGRES_USER=agent-ai
POSTGRES_PASSWORD=postgres
POSTGRES_DB=agent_database
POSTGRES_PORT=5432
POSTGRES_HOST=agent-database
# Development Database
DEVELOPMENT_POSTGRES_USER=platform-ai
DEVELOPMENT_POSTGRES_PASSWORD=platform-ai
DEVELOPMENT_POSTGRES_DB=platform-ai
DEVELOPMENT_POSTGRES_PORT=5433
# IMPORTANT (Docker): containers must use the compose service name + container port.
# The host-mapped port (5433) is only for connecting from your laptop to Docker.
DEVELOPMENT_POSTGRES_HOST=development-database
DEVELOPMENT_URI=postgresql://platform-ai:platform-ai@development-database:5432/platform-ai
# LLM Keys
GOOGLE_GENAI_USE_VERTEXAI=0
GOOGLE_API_KEY=your-google-api-key
# Server
PORT=8080