-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.test.defaults
112 lines (80 loc) · 3.16 KB
/
.env.test.defaults
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
BACKEND_HTTP_PORT=8880
ENVIRONMENT=test
PROJECT_NAME=monitorenv
MONITORENV_IMAGE=monitorenv-app
MONITORENV_URL=http://localhost:8880
MONITORENV_API_KEY=DUMMY-API-KEY
# Spring
ENV_DB_URL=jdbc:postgresql://localhost:5432/monitorenvdb?user=postgres&password=postgres
FLYWAY_MIGRATION_PATH=classpath:/db/migration,classpath:/db/testdata
# Sentry
MONITORENV_SENTRY_ENABLED=false
SENTRY_DSN=
# MonitorFish
MONITORFISH_URL=http://mock-monitorfish:8080
MONITORFISH_API_KEY=dummy-monitorfish-key
# RapportNav
RAPPORTNAV_URL=http://mock-rapportnav:8080
# OICD
MONITORENV_OIDC_CACHE_IN_MINUTES=120
MONITORENV_OIDC_CLIENT_ID=monitorenv
MONITORENV_OIDC_ENABLED=false
MONITORENV_OIDC_ISSUER_URI=http://keycloak:8085/realms/monitor
MONITORENV_OIDC_USERINFO_ENDPOINT=/protocol/openid-connect/userinfo
################################################################################
# PostgreSQL
POSTGRES_PORT=5432
POSTGRES_USER=postgres
POSTGRES_DB=monitorenvdb
POSTGRES_HOST=localhost
POSTGRES_SCHEMA=public
POSTGRES_PASSWORD=postgres
MONITORENV_DATA_FOLDER=./datascience/src/pipeline/data
################################################################################
# Monitoring & Backup
MONITORENV_LOGS_AND_BACKUPS_GID=1001
MONITORENV_LOGS_FOLDER=./logs
MONITORENV_BACKUPS_FOLDER=./backups
##### FRONTEND #####
################################################################################
################################################################################
################################################################################
# GeoServer
FRONTEND_GEOSERVER_NAMESPACE=monitorenv
FRONTEND_GEOSERVER_REMOTE_URL=//localhost:8081
# Production:
# FRONTEND_GEOSERVER_REMOTE_URL=https://monitorenv.din.developpement-durable.gouv.fr
################################################################################
# Google Maps
FRONTEND_GOOGLEMAPS_API_KEY=NOT_SET
################################################################################
# Mapbox
FRONTEND_MAPBOX_KEY=
################################################################################
# Shom
FRONTEND_SHOM_KEY=
################################################################################
# Sentry
FRONTEND_SENTRY_ENV=dev
FRONTEND_SENTRY_DSN=
FRONTEND_SENTRY_TRACING_ORIGIN=localhost
################################################################################
# Feature flags
FRONTEND_MISSION_FORM_AUTO_UPDATE=true
FRONTEND_MISSION_FORM_AUTO_SAVE_ENABLED=true
FRONTEND_REPORTING_FORM_AUTO_SAVE_ENABLED=true
FRONTEND_REPORTING_FORM_AUTO_UPDATE=true
FRONTEND_DASHBOARD_ENABLED=true
################################################################################
# Version
FRONTEND_MONITORENV_VERSION=0.0.0
################################################################################
# METABASE
FRONTEND_METABASE_URL=https://metabase.din.developpement-durable.gouv.fr
################################################################################
# OICD
FRONTEND_OIDC_AUTHORITY=http://localhost:8085/realms/monitor
FRONTEND_OIDC_CLIENT_ID=monitorenv
FRONTEND_OIDC_ENABLED=false
FRONTEND_OIDC_REDIRECT_URI=http://localhost:3000/login
################################################################################