Skip to content

Latest commit

 

History

History
87 lines (52 loc) · 1.45 KB

File metadata and controls

87 lines (52 loc) · 1.45 KB

cds-migrator-kit

Installation

Default Installation (without RDM or Videos)

To install the package without RDM or videos, run:

pip install .

Installation for RDM

To install the package with RDM, run:

pip install -e ".[rdm]"

To see available RDM commands, run:

invenio migration --help

Installation for Videos

To install the package with cds-videos, run:

pip install ".[videos]"

To see available videos commands, run:

invenio migration videos --help

Running Tests Locally

For RDM

Install rdm and test dependencies:

pip install -e ".[rdm,tests]"

Run the rdm tests:

./run-tests.sh rdm

For Videos

Install videos and test dependencies:

pip install ".[videos,tests]"

Run the video tests:

./run-tests.sh videos

To run the interface:

gunicorn -b :8080 --timeout 120 --graceful-timeout 60 cds_migrator_kit.app:app