Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 583 Bytes

File metadata and controls

19 lines (16 loc) · 583 Bytes

Contributing

Development envionment:

$ pip install virtualenv  # might require sudo/admin privileges
$ git clone https://github.com/clld/clld.git
$ cd clld
$ python -m virtualenv .venv
$ source .venv/bin/activate  # Windows: .venv\Scripts\activate.bat
$ pip install -r requirements.txt  # installs the cloned version with dev-tools in development mode

In order to be able to run the javascript tests, mocha etc. must be installed in a node (>=18) environment. npm will pickup the relevant requirements from package.json:

$ npm install