-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env
36 lines (31 loc) · 987 Bytes
/
.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
33
34
35
36
API_HOST=127.0.0.1
API_PORT=8001
#############################################
# PostgreSQL database environment variables
#############################################
PGUSER=root
PGPASSWORD=root
PGDATABASE=test_db
PGPORT=5432
PGHOST=127.0.0.1
PGSSLMODE=disable
DATABASE_URL=postgres://${PGUSER}:${PGPASSWORD}@${PGHOST}:${PGPORT}/${PGDATABASE}
#############################################
# Redis variables
#############################################
REDIS_HOST=redis_server
REDIS_PORT=6379
#############################################
# Minio variables
#############################################
MINIO_URL=http://127.0.0.1:9000
MINIO_BUCKET=mrbeam
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin
MINIO_ACCESS_KEY=EARfO36y2uaGLW3H
MINIO_SECRET_KEY=CKPmTIbMQHHRInAaq8F8L6YXY22x3Idm
#############################################
# Beam detection endpoint
#############################################
ML_SERVICE_URL=http://127.0.0.1:8011
SENTRY_DSN=https://redacted