Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FIT-Connect
sender-app
Commits
bc960dd1
Commit
bc960dd1
authored
Jul 17, 2020
by
Peter Kuhn
Browse files
Merge branch 'master' of
https://git.fortiss.org/fit-connect/sender-app
parents
be36c07d
4c0ea1fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Jenkinsfile
0 → 100644
View file @
bc960dd1
pipeline
{
agent
any
stages
{
stage
(
'read param'
)
{
steps
{
sh
'rm -f src/config.js'
sh
'touch src/config.js'
sh
"echo \"export default {\n\" >> src/config.js"
sh
'echo \"senderId: \"${senderId}\",\n\" >> src/config.js'
sh
'echo \"clientId: \"${clientId}\",\n\" >> src/config.js'
sh
'echo \"clientSecret: \"${clientSecret}\",\n\" >> src/config.js'
sh
'echo \"scope: \"${scope}\",\n\" >> src/config.js'
sh
'echo \"};\" >> src/config.js'
}
}
stage
(
'install-dependencies'
)
{
steps
{
sh
'npm install'
}
}
stage
(
'build'
)
{
steps
{
sh
'npm run build'
}
}
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment