Skip to content
Snippets Groups Projects

new: env-metadatas

7 files
+ 132
32
Compare changes
  • Side-by-side
  • Inline

Files

import * as path from 'path';
import * as os from 'os';
import * as path from 'path';
const homeDir = os.homedir();
// if we are on container, means the directory will depend differently
@@ -30,3 +30,18 @@ export const USER_CHALLENGE_PATH = path.join(
);
export const BRIEFING_FILE_NAME = 'briefing.md';
export const ENV_FILE_PATH = path.join(
PROJECT_THEIA_PATH,
'/.env'
);
export const BASHRC_PATH = path.join(
homeDir,
'/.bashrc'
);
export const SERVICES_PATHS_PATH = path.join(
PROJECT_THEIA_PATH,
'/paths.json'
);
Loading