From 919c6458c79162ec819b3b2f1660e938544bed3a Mon Sep 17 00:00:00 2001 From: Emmanuel Raviart <emmanuel@raviart.com> Date: Mon, 4 Nov 2024 18:27:05 +0100 Subject: [PATCH] Explicit default values of PUBLIC_ --- example.env | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/example.env b/example.env index a73c221c2..404561878 100644 --- a/example.env +++ b/example.env @@ -5,15 +5,19 @@ ALLOW_ROBOTS=false # Private (for connected users) HTTP(S) URL of LexImpact Socio-Fiscal Budget server # BUDGET_API_URL="https://SECRET.DOMAIN.NAME/state_simulation" +BUDGET_API_URL= # URL of GitLab pipeline to run when a non-authentication user requests a budget simulation # BUDGET_DEMAND_PIPELINE_URL="https://GITLAB.DOMAIN.NAME/api/v4/projects/PROJECT_ID/pipeline?ref=main" +BUDGET_DEMAND_PIPELINE_URL= # Token used for calling the budget simulation demand GitLab pipeline -#BUDGET_DEMAND_PIPELINE_TOKEN="SECRET" +# BUDGET_DEMAND_PIPELINE_TOKEN="SECRET" +BUDGET_DEMAND_PIPELINE_TOKEN= # Secret key used to sign JSON web tokens sent to Budget API # BUDGET_JWT_SECRET="SECRET" +BUDGET_JWT_SECRET= # GitHub access token used for parameters edition # Caution, this token is private and must be kept secret. -- GitLab