4
edits
Line 53: | Line 53: | ||
==== Setting up your dev environment in Fedora Linux ==== | ==== Setting up your dev environment in Fedora Linux ==== | ||
# Install git and a C/C++ toolchain with <code>sudo yum install -y git gcc-c++ make pkgconfig</code> | |||
# Install the Java Development Kit with <code>sudo yum install -y java-1.7.0-openjdk-headless</code> | |||
# Install the MongoDB server | |||
## Install the package with <code>sudo yum install -y mongodb-server</code> | |||
# Install Elasticsearch | |||
## Download [http://www.elasticsearch.org/download/ Elasticsearch] as a <code>.rpm</code> file and install it with <code>sudo rpm -i elasticsearch*.rpm</code> | |||
## You may need to run a few commands: | |||
### <code> sudo /bin/systemctl daemon-reload</code> | |||
### <code>sudo /bin/systemctl enable elasticsearch.service</code> | |||
## You can then start it with <code>sudo /bin/systemctl start elasticsearch.service</code> | |||
# Install Nodejs with <code>sudo yum install -y nodejs npm</code> | |||
==== Setting up your dev environment in Windows 7 ==== | ==== Setting up your dev environment in Windows 7 ==== |
edits