Skip to content

Latest commit

 

History

History
92 lines (67 loc) · 2.33 KB

local.md

File metadata and controls

92 lines (67 loc) · 2.33 KB

Local Development Setup

The instructions on this page will guide you in setting up a local development environment in your system.

For a start, fork Query-Server to your own github account. Then, clone it to your local system.

git clone -b master https://github.com/<your_username>/query-server.git

Add an upstream remote so that you can push your patched branches for starting a PR .

cd query-server
git remote add upstream https://github.com/fossasia/query-server.git

Make sure you have Nodejs installed. Running this tool requires installing the nodejs as well as python dependencies.

npm install -g bower
bower install
pip install virtualenv
virtualenv venv
. venv/bin/activate # Linux
venv\Scripts\activate # Windows
pip install -r requirements.txt

or to use pipenv instead of pip and virtualenv separately.

npm install -g bower
bower install
pip install pipenv
pipenv --two # To setup python 2 virtual environment
pipenv install -r requirements.txt
pipenv shell # To activate virtual environment

To set up MongoDB on your server :

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
echo "deb http://repo.mongodb.org/apt/ubuntu "$(lsb_release -sc)"/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list
sudo apt-get update
sudo apt-get install -y mongodb
sudo service mongod start

To run the project on a local machine.

For development mode (with debugger active), use the following command

python app/server.py --dev

To run the project on a production machine.

python app/server.py

Preferred Development Workflow

  1. Get the latest copy of code from upstream.
git pull upstream master
  1. Once you get assigned an issue, create a new branch from master.
git checkout -b XXX-mock-issue     # XXX is the issue number
  1. Work on your patch, test it and when it's done, push it to your fork.
git push origin XXX-mock-issue
  1. File a PR and wait for the maintainers to suggest reviews or in the best case merge the PR. Then just update master of your local clone.
git pull upstream master

And then loop back again. For contribution guidelines, refer here