Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.05 KB

README.md

File metadata and controls

38 lines (31 loc) · 1.05 KB

After cloning this repository, ensure that you have a Python3 installation, and then run the following:

python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
pip install -e .

On windows: First make sure python 3 is installed and in your path

python -m venv venv
cd <wherever your virtual environment is>
Scripts\activate.bat
pip install -r requirements.txt
pip install -e .

The main function can then be run with

python manage.py runserver

To run the test suite using pytest

python manage.py test

To verify code style using pylint

pylint --load-plugins pylint_django europepmc

To contribute to this repository, please refer to CONTRIBUTING.md.

2020-03-13