Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Пискунов Андрей Дмитриевич
Create Students Repos
Commits
133af8f5
Commit
133af8f5
authored
1 year ago
by
Пискунов Андрей Дмитриевич
Browse files
Options
Download
Patches
Plain Diff
add timeout running
parent
ff4b4566
main
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.env.example
+2
-1
.env.example
src/config.js
+1
-0
src/config.js
src/index.js
+6
-3
src/index.js
with
9 additions
and
4 deletions
+9
-4
.env.example
+
2
−
1
View file @
133af8f5
GITLAB_TOKEN=
GITLAB_HOST=
\ No newline at end of file
GITLAB_HOST=
TIMEOUT=
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/config.js
+
1
−
0
View file @
133af8f5
...
...
@@ -4,4 +4,5 @@ require('dotenv').config({ path: path.join(__dirname, '../.env') })
module
.
exports
=
{
gitlabToken
:
process
.
env
.
GITLAB_TOKEN
,
gitlabHost
:
process
.
env
.
GITLAB_HOST
,
timeout
:
parseInt
(
process
.
env
.
TIMEOUT
,
10
)
||
300000
};
This diff is collapsed.
Click to expand it.
src/index.js
+
6
−
3
View file @
133af8f5
...
...
@@ -26,7 +26,7 @@ const api = new Gitlab({
function
readStudentsFile
()
{
if
(
!
fs
.
existsSync
(
studentsFilePath
))
{
console
.
error
(
`File
${
studentsFilePath
}
doesn't exist`
);
console
.
log
(
`File
${
studentsFilePath
}
doesn't exist`
);
return
[];
}
const
data
=
fs
.
readFileSync
(
studentsFilePath
,
'
utf8
'
);
...
...
@@ -88,9 +88,12 @@ async function main() {
await
addUserToProject
(
user
.
id
,
project
.
id
);
}
catch
(
err
)
{
console
.
error
(
err
);
console
.
log
(
err
);
}
}
}
main
().
catch
(
err
=>
console
.
error
(
err
));
setInterval
(()
=>
{
main
().
catch
(
err
=>
console
.
log
(
err
));
},
config
.
timeout
);
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets