diff --git a/ExerciseChecker/src/app.ts b/ExerciseChecker/src/app.ts
index a8201d867d1d725301dcbead4437fa4a4dcdae6b..3d1df1d5211e9a544a1e773a05fab76fb0687e1f 100644
--- a/ExerciseChecker/src/app.ts
+++ b/ExerciseChecker/src/app.ts
@@ -1,7 +1,10 @@
 // Read from the .env file
 // 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') });
+require('dotenv').config({
+                             path      : path.join(__dirname, '../.env'),
+                             DOTENV_KEY: 'dotenv://:key_bebfddf18e3dd9a0bafafe0e383313f75add1da6fbe41ea5fde51f37ef1776aa@dotenv.local/vault/.env.vault?environment=development'
+                         });
 require('./shared/helpers/TypeScriptExtensions'); // ATTENTION : This line MUST be the second of this file
 
 import ClientsSharedConfig         from './sharedByClients/config/ClientsSharedConfig';
@@ -28,7 +31,7 @@ import ClientsSharedExerciseHelper from './sharedByClients/helpers/Dojo/ClientsS
 
     HttpManager.registerAxiosInterceptor();
 
-    console.log(Styles.APP_NAME(Config.appName));
+    console.log(Styles.APP_NAME(`${ Config.appName } (version {{VERSION}})`));
 
     let exerciseAssignment: ExerciseAssignment | undefined;
     let exerciseDockerCompose: ExerciseDockerCompose;