Skip to content
This repository has been archived by the owner on Feb 17, 2022. It is now read-only.

inveniosoftware/claimstore

Repository files navigation

ClaimStore

image

image

image

image

About

ClaimStore is a mini-service permitting to exchange information about claims done within a system of collaborating heterogeneous digital repositories or information services.

Installation

Using Docker

$ docker-compose build
$ docker-compose run --rm web bower install
$ docker-compose run --rm web claimstore database create
$ docker-compose run --rm web claimstore database populate  # optional
$ docker-compose run --rm web /code/run-tests.sh
$ docker-compose up

Using command line

$ mkvirtualenv claimstore --python=$(which python3.4)
$ sudo apt-get install npm  # install nodejs
$ sudo npm install -g bower
$ pip install -e .[tests,docs]
$ bower install
$ export SQLALCHEMY_DATABASE_URI=postgres://postgres:postgres@db:5432/postgres
$ claimstore database create
$ claimstore database populate  # optional
$ python setup.py test
$ claimstore run

Documentation