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

Config => Add dockerhub field

parent 66992b45
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,12 @@ class Config {
id: string; secret: string;
};
public readonly dockerhub: {
repositories: {
exerciseChecker: string
}
};
constructor() {
this.appName = process.env.APP_NAME || '';
......@@ -28,6 +34,12 @@ class Config {
id : process.env.DOJO_EXERCISE_ID || '',
secret: process.env.DOJO_SECRET || ''
};
this.dockerhub = {
repositories: {
exerciseChecker: process.env.DOCKERHUB_EXERCISE_CHECKER_REPOSITORY || ''
}
};
}
private resetResultsVolume(): void {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment