Example applicationΒΆ

First install Invenio-Circulation, setup the application and load fixture data by running:

$ pip install -e .[all]
$ cd examples
$ ./app-setup.sh
$ FLASK_APP=app.py flask fixtures loans

Next, start the development server:

$ export FLASK_APP=app.py FLASK_ENV=development
$ flask run

and open the example application in your browser:

$ open http://127.0.0.1:5000/circulation/loan/1

To reset the example application run:

$ ./app-teardown.sh