Skip to content
Snippets Groups Projects
Commit 80937c51 authored by michael.minelli's avatar michael.minelli
Browse files

App => Add DOTENV_KEY for dev

parent 17902cd7
No related branches found
No related tags found
No related merge requests found
// 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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment