diff --git a/NodeApp/src/app.ts b/NodeApp/src/app.ts index e9156cf32a99b6c9e40be0dff8dd130eadb11726..ea7d4ef9a1c6eb8f15517b3df0a0bb2cf56a6dbd 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 a6002b0a382a5b6d9f54f5825dfa21b7235f7549..bc308adbff3f6cf406117af44d26b68b6a04beeb 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,