From 23e6cf9d109d95c10faa4d6a57495c35013a560a Mon Sep 17 00:00:00 2001 From: biji Date: Thu, 12 Jul 2018 17:41:28 +0700 Subject: [PATCH] Created Install source without root (markdown) --- Install-source-without-root.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Install-source-without-root.md diff --git a/Install-source-without-root.md b/Install-source-without-root.md new file mode 100644 index 0000000..7a43dcf --- /dev/null +++ b/Install-source-without-root.md @@ -0,0 +1,19 @@ +* Install [nvm](https://github.com/creationix/nvm) +* `source NVMPATH/nvm.sh` for example `source ~/.nvm/nvm.sh` +* `nvm install v8.11.3` +* `nvm use v8.11.3` +* `nvm install-latest-npm` +* `cd ~` +* Clone repo to home: `git clone https://github.com/wekan/wekan.git` +* Install meteor (you can skip sudo by entering invalid password): `curl https://install.meteor.com/ | sh` +* `cd wekan/` +* `~/.meteor/meteor npm install --save babel-runtime xss meteor-node-stubs` +* `~/.meteor/meteor npm install --save bcrypt` +* `~/.meteor/meteor` + +When you get this output, wekan is ready: +``` +=> Started your app. + +=> App running at: http://localhost:3000/ +```