backend #1

Merged
s460930 merged 15 commits from backend into develop 2020-12-01 19:31:56 +01:00
2 changed files with 14 additions and 0 deletions
Showing only changes of commit 7541f302c3 - Show all commits

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.idea/
.idea
*.iml

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Test') {
steps {
echo 'Test pipeline'
}
}
}
}