-
Notifications
You must be signed in to change notification settings - Fork 380
Installation Linux
Md. Abu Taher edited this page Oct 25, 2018
·
3 revisions
git clone https://github.com/vanila-io/wireflow.git
cd wireflow
sudo apt-get install build-essential g++ libcairo2-dev libjpeg-dev libgif-dev libjpeg8-dev libpango1.0-dev
Install Meteor and then install yarn and node-gyp for future usage.
curl https://install.meteor.com/ | sh
meteor npm install -g yarn node-gyp
meteor yarn --ignore-optional
meteor yarn start
In case you want to start the app manually, make sure to include settings, port and database properly.
Assuming you want to run meteor on port 3050, with mongo running up on localhost:27018, and a settings file, your code will look like following,
MONGO_URL=mongodb://localhost:27018 meteor --port 3050 --settings settings.json