From 9668ab1b140309a5aa724ab3c1ee3ede5cc1820a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me>
Date: Wed, 20 Sep 2023 21:04:07 +0200
Subject: [PATCH] App => Revert to .env

---
 NodeApp/src/app.ts                    | 2 +-
 NodeApp/src/commander/CommanderApp.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/NodeApp/src/app.ts b/NodeApp/src/app.ts
index e9156cf..ea7d4ef 100644
--- a/NodeApp/src/app.ts
+++ b/NodeApp/src/app.ts
@@ -2,7 +2,7 @@
 // ATTENTION : This lines MUST be the first of this file (except for the path import)
 const path = require('node:path');
 require('dotenv').config({
-                             path      : path.join(__dirname, '../.env.vault'),
+                             path      : path.join(__dirname, '../.env'),
                              DOTENV_KEY: 'dotenv://:key_fc323d8e0a02349342f1c6a119bb38495958ce3a43a87d19a3f674b7e2896dcb@dotenv.local/vault/.env.vault?environment=development'
                          });
 require('./shared/helpers/TypeScriptExtensions'); // ATTENTION : This line MUST be the second of this file
diff --git a/NodeApp/src/commander/CommanderApp.ts b/NodeApp/src/commander/CommanderApp.ts
index a6002b0..bc308ad 100644
--- a/NodeApp/src/commander/CommanderApp.ts
+++ b/NodeApp/src/commander/CommanderApp.ts
@@ -12,7 +12,7 @@ class CommanderApp {
         this.program
         .name('dojo')
         .description('CLI of the Dojo application')
-        .version('2.0.0')
+        .version('DEV')
         .showHelpAfterError()
         .configureHelp({
                            showGlobalOptions: true,
-- 
GitLab