Skip to content

Instantly share code, notes, and snippets.

@entrptaher
Created April 3, 2017 05:42
Show Gist options
  • Save entrptaher/05ac77be20f0c08dd2d4679bb8ad1da0 to your computer and use it in GitHub Desktop.
Save entrptaher/05ac77be20f0c08dd2d4679bb8ad1da0 to your computer and use it in GitHub Desktop.

Lazy Dev Style (On Linux):

  • Grab a database from mlab and a free test SMTP server from mailtrap.io

  • Install NodeJS

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
  • Install Meteor
curl https://install.meteor.com/ | sh
  • Clone the repo and run it with some env variables
git clone https://github.com/wekan/wekan
cd wekan
meteor npm install -s xss
meteor reset
export MONGO_URL=mongodb://test:[email protected]:47900/test_wekan_linux 
export MAIL_URL=smtp://3480dbd6983294:[email protected]:25/ 
meteor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment