-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (25 loc) · 959 Bytes
/
Copy path.env.example
File metadata and controls
30 lines (25 loc) · 959 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
27
28
29
30
# Copy to .env and adjust. Do NOT commit real secrets (.env is gitignored).
# development | staging | production
ENVIRONMENT=development
LOG_LEVEL=INFO
# Host port mappings used by docker-compose
API_PORT=8000
POSTGRES_PORT=5432
POSTGRES_TEST_PORT=5433
REDIS_PORT=6379
# Postgres + Redis.
# Defaults below use docker-compose service names — correct when the API/workers
# run INSIDE compose (`just compose`). To run the app on the host (`just app`),
# swap the hosts to localhost (commented variants).
DATABASE_URL=postgresql://app:app@postgres:5432/app
REDIS_URL=redis://redis:6379/0
# DATABASE_URL=postgresql://app:app@localhost:5432/app
# REDIS_URL=redis://localhost:6379/0
# AWS Bedrock (AI agents). Leave unset to use the default boto3 credential chain
# (env / shared profile / instance role).
AWS_REGION=eu-central-1
BEDROCK_REGION=eu-central-1
# AWS_ACCESS_KEY=
# AWS_SECRET_KEY=
# Sentry (only initialized in staging/production)
# SENTRY_DSN=