Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 641 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (23 loc) · 641 Bytes

Contributors Guidelines

Setting up the dev environment

  1. Clone the repository to your local machine:
 git clone https://gitlab.com/TIBHannover/orkg/nlp/orkg-nlp-api.git
 cd orkg-nlp-api
  1. 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
  1. 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