Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# from mastere
node {
stage('scm checkout') {
echo "scm checkout"
git branch: 'dev',
credentialsId: '6107d8e5-fe4e-43c2-ae69-8730c09edecb',
url: 'https://github.com/wintoo/node-express-realworld-example-app.git'
}

stage('build') {
sh 'npm install'
}

stage('test') {
echo "test"
}

stage('deploy') {
echo "deploy"
}

}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@


# ![Node/Express/Mongoose Example App](project-logo.png)

[![Build Status](https://travis-ci.org/anishkny/node-express-realworld-example-app.svg?branch=master)](https://travis-ci.org/anishkny/node-express-realworld-example-app)
Expand Down Expand Up @@ -50,3 +52,7 @@ Requests are authenticated using the `Authorization` header with a valid JWT. We
<br />

[![Brought to you by Thinkster](https://raw.githubusercontent.com/gothinkster/realworld/master/media/end.png)](https://thinkster.io)



### hellow world