Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DojoExerciseChecker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dojo Project (HES-SO)
Projects
Pipelines
DojoExerciseChecker
Commits
9a81a53c
Commit
9a81a53c
authored
1 year ago
by
michael.minelli
Browse files
Options
Downloads
Patches
Plain Diff
Package => Change version
parent
4a4bd3d1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ExerciceChecker/package.json
+1
-1
1 addition, 1 deletion
ExerciceChecker/package.json
ExerciceChecker/src/app.ts
+5
-0
5 additions, 0 deletions
ExerciceChecker/src/app.ts
with
6 additions
and
1 deletion
ExerciceChecker/package.json
+
1
−
1
View file @
9a81a53c
{
{
"name"
:
"dojo_exercice_checker"
,
"name"
:
"dojo_exercice_checker"
,
"version"
:
"
1
.0.
0
"
,
"version"
:
"
0
.0.
1
"
,
"main"
:
"dist/app.js"
,
"main"
:
"dist/app.js"
,
"bin"
:
{
"bin"
:
{
"dirmanager"
:
"./dist/app.js"
"dirmanager"
:
"./dist/app.js"
...
...
This diff is collapsed.
Click to expand it.
ExerciceChecker/src/app.ts
+
5
−
0
View file @
9a81a53c
...
@@ -4,11 +4,16 @@ const path = require('node:path');
...
@@ -4,11 +4,16 @@ const path = require('node:path');
require
(
'
dotenv
'
).
config
({
path
:
path
.
join
(
__dirname
,
'
../.env
'
)
});
require
(
'
dotenv
'
).
config
({
path
:
path
.
join
(
__dirname
,
'
../.env
'
)
});
require
(
'
./shared/helpers/TypeScriptExtensions
'
);
// ATTENTION : This line MUST be the second of this file
require
(
'
./shared/helpers/TypeScriptExtensions
'
);
// ATTENTION : This line MUST be the second of this file
import
chalk
from
'
chalk
'
;
import
HttpManager
from
'
./managers/HttpManager
'
;
import
HttpManager
from
'
./managers/HttpManager
'
;
HttpManager
.
registerAxiosInterceptor
();
HttpManager
.
registerAxiosInterceptor
();
console
.
log
(
chalk
.
blue
(
'
Dojo Exercice Checker
'
));
// Step 1: Read the dojo enonce file from the enonce repository
// Step 1: Read the dojo enonce file from the enonce repository
// Step 2: Download immutables files (maybe throw or show an error if the files have been modified ?) - Can be merged with step 1
// Step 2: Download immutables files (maybe throw or show an error if the files have been modified ?) - Can be merged with step 1
// Step 3: Run docker-compose file
// Step 3: Run docker-compose file
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment