-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.env
35 lines (26 loc) · 1.2 KB
/
project.env
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
# Database configuration for PostgreSQL (running in container called "database-server-dab-p2-b7c7d0d1-d2ff-4ef4-9553-e95ea3225629")
POSTGRES_USER=username
POSTGRES_PASSWORD=password
POSTGRES_DB=database
TZ=Europe/Helsinki
# Database configuration for Flyway (used for database migrations)
FLYWAY_USER=username
FLYWAY_PASSWORD=password
FLYWAY_URL=jdbc:postgresql://database-server-dab-p2-b7c7d0d1-d2ff-4ef4-9553-e95ea3225629:5432/database
# Database configuration for PostgreSQL driver
PGUSER=username
PGPASSWORD=password
PGHOST=database-server-dab-p2-b7c7d0d1-d2ff-4ef4-9553-e95ea3225629
PGPORT=5432
PGDATABASE=database
# FINAL PG ENV VAR Arrangement
PGPASS=database-server-dab-p2-b7c7d0d1-d2ff-4ef4-9553-e95ea3225629:5432:database:username:password
# Deno cache location (avoid reloading depedencies over and over)
DENO_DIR=/app-cache
# FOR DOCKER COMPOSE DEV & PROD CONFIG ONLY
# hostname: redis (dockerized image name) and port:6379
# Redis image is not deployed in K8s cluster. K8s environment uses Redis lab url for redis @ https://app.redislabs.com/#/
# Create .env file at the root of ./qa-api dir at set the REDIS_URL key with your own url
REDIS_URL=redis://redis:6379
VITE_QA_URL=/api
VITE_LLM_URL=/llm/