From 584c6ce07d81b2537cd5b50a106b9f68e0480183 Mon Sep 17 00:00:00 2001 From: Martin Monperrus Date: Thu, 14 Jan 2016 20:57:33 +0100 Subject: [PATCH 1/4] updates installation howto --- readme.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index fe091f0ac..e6c295154 100644 --- a/readme.md +++ b/readme.md @@ -20,10 +20,18 @@ to others who want to participate. To install: git clone + cd cryptpad npm install npm install -g bower ## if necessary bower install - ## copy config.js.dist to config.js and modify configuration (use your own mongodb instance) + + ## copy config.js.dist to config.js + cp config.js.dist config.js + + ## modify configuration to use your own mongodb instance + ## for example aon the default mongodb port `mongodb://localhost:27017/demo_database` + $EDITOR config.js + node ./server.js From ad1c7edc31f868d237da20291f0cb5e3ce71f5a5 Mon Sep 17 00:00:00 2001 From: Caleb James DeLisle Date: Fri, 12 Feb 2016 10:38:47 +0100 Subject: [PATCH 2/4] Added travis.yml --- travis.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 travis.yml diff --git a/travis.yml b/travis.yml new file mode 100644 index 000000000..c7e40534f --- /dev/null +++ b/travis.yml @@ -0,0 +1,4 @@ +language: node_js +node_js: + - "0.12" +script: npm run-script lint From ff6e1e6fc04b0f1db7637656c0d08b79193949d9 Mon Sep 17 00:00:00 2001 From: Caleb James DeLisle Date: Fri, 12 Feb 2016 10:43:33 +0100 Subject: [PATCH 3/4] Added travisci branch diffdom --- travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/travis.yml b/travis.yml index c7e40534f..f870ad252 100644 --- a/travis.yml +++ b/travis.yml @@ -1,4 +1,6 @@ language: node_js +branches: + only: + - diffdom node_js: - "0.12" -script: npm run-script lint From 591323a62ee2566ecd242180f19512ee42d4023f Mon Sep 17 00:00:00 2001 From: Caleb James DeLisle Date: Fri, 12 Feb 2016 10:46:10 +0100 Subject: [PATCH 4/4] travis.yml --- travis.yml => .travis.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename travis.yml => .travis.yml (100%) diff --git a/travis.yml b/.travis.yml similarity index 100% rename from travis.yml rename to .travis.yml