-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env
34 lines (26 loc) · 881 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
# set project name to have a short one
COMPOSE_PROJECT_NAME=nutripatrol
# unify separator with windows style
COMPOSE_PATH_SEPARATOR=;
# dev is default target
COMPOSE_FILE=docker-compose.yml;docker/dev.yml
API_EXPOSE=127.0.0.1:8000
# by default on dev desktop, no restart
RESTART_POLICY=no
# Sentry DNS for bug tracking, used only in staging and production
SENTRY_DNS=
# Log level to use, DEBUG by default in dev
LOG_LEVEL=DEBUG
POSTGRES_HOST=postgres
POSTGRES_DB=postgres
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
# expose postgres on localhost for dev
# POSTGRES_EXPOSE=127.0.0.1:5432
# The top-level domain used for Open Food Facts,
# it's either `net` (staging) or `org` (production)
OFF_TLD=net
# Environment name (mostly used for Sentry): dev, staging, prod
ENVIRONMENT=dev
# The URL of local nutripatrol frontend
CORS_ALLOW_ORIGINS=["http://localhost:5173"]