From 40a87e2e1295378fade29627364f1cb75a590d26 Mon Sep 17 00:00:00 2001 From: Steve Reis <stevereis93@gmail.com> Date: Mon, 25 Oct 2021 16:58:50 +0200 Subject: [PATCH] Fix restore old env.defaults Add .env to gitignore --- api/.env.defaults | 4 ++-- api/.gitignore | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/api/.env.defaults b/api/.env.defaults index e94e8c2..63d5e94 100644 --- a/api/.env.defaults +++ b/api/.env.defaults @@ -1,3 +1,3 @@ -ENGINE_TYPE=csv -ENGINE_BASE_URL=https://docs.google.com/spreadsheets/d/1yjslZQCOMCxkjr4xQ-NmTMNEjhpdmZgijbn83za80Ak/export?format=tsv +ENGINE_TYPE=exareme +ENGINE_BASE_URL=http://127.0.0.1:8080/services/ GATEWAY_PORT=8081 \ No newline at end of file diff --git a/api/.gitignore b/api/.gitignore index 22f55ad..5ecdd35 100644 --- a/api/.gitignore +++ b/api/.gitignore @@ -32,4 +32,7 @@ lerna-debug.log* !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json -!.vscode/extensions.json \ No newline at end of file +!.vscode/extensions.json + +# env +.env \ No newline at end of file -- GitLab