Newer
Older
This repo contains mutliple scripts used as tooling (migration and extraction of data, conversion, ...).
It contains the link (as submodules) to the remote libraries needed to run the scripts; a `git clone` with the `--recursive` option has to be done to initialize the submodules as needed.
To run the scripts in this repo, we have to create a python virtual environment:
```
virtualenv -p /usr/bin/python2 venv
```
activate it
```
source venv/bin/activate
```
and install the required packages:
```
find . -name 'requirements.txt' -exec pip install -r {} \;
find . -name "requirements.txt" -exec realpath {} \; | xargs -n 1 dirname > $(find . -name 'site-packages')/mdedonno.pth
```