Contributors Guidelines Setting up the dev environment Clone the repository to your local machine: git clone https://gitlab.com/TIBHannover/orkg/nlp/orkg-nlp-api.git cd orkg-nlp-api Create a virtual environment with python=3.8, activate it, install the required dependencies and install the pre-commit configuration: conda create -n orkg_nlp_api python=3.8 conda activate orkg_nlp_api pip install -r requirements.txt pre-commit install Create a branch and commit your changes: git switch -c <name-your-branch> # do your changes git add . git commit -m "your commit msg" git push