Example applicationΒΆ

Run the ElasticSearch and Redis server.

Run example development setup:

$ pip install -e .[all]
$ cd examples
$ ./app-setup.sh
$ ./app-fixtures.sh

Run example development server:

$ FLASK_DEBUG=1 FLASK_APP=app.py flask run -p 5000

Try to perform some search queries:

$ curl http://localhost:5000/?q=body:test

To be able to uninstall the example app:

$ ./app-teardown.sh