diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..a3584586e --- /dev/null +++ b/Jenkinsfile @@ -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" + } + +} diff --git a/README.md b/README.md index 660365d2f..46dff9c26 100644 --- a/README.md +++ b/README.md @@ -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) @@ -50,3 +52,7 @@ Requests are authenticated using the `Authorization` header with a valid JWT. We
[![Brought to you by Thinkster](https://raw.githubusercontent.com/gothinkster/realworld/master/media/end.png)](https://thinkster.io) + + + +### hellow world