forked from openfoodfacts/taxonomy-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
29 lines (24 loc) · 947 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
# use windows path separator for compat
COMPOSE_PATH_SEPARATOR=;
COMPOSE_FILE=docker-compose.yml;docker/dev.yml
# version
DOCKER_TAG=dev
# domain name
TAXONOMY_EDITOR_DOMAIN=taxonomy.localhost
# exposition
TAXONOMY_EDITOR_EXPOSE=127.0.0.1:8091
# this one is needed only in dev, to tell nginx and fastapi, which port urls should include
# it must either start with : or be empty
PUBLIC_TAXONOMY_EDITOR_PORT=:8091
# API scheme is useful because, in prod, we have to proxy and already proxied request
# and loose the original scheme
API_SCHEME=http
# This is the PAT (Personal Access Token)
# to create PRs on openfoodfacts-server github project (must be able to read-write PRs)
# you may leave blank in tests…
GITHUB_PAT=
# repository URI on github. If you want to test PR creation, use a fork
REPO_URI=openfoodfacts/openfoodfacts-server
# eventually set this to your local user id to avoid permissions errors
# USER_UID=1000
# USER_GID=1000