Example applicationΒΆ

Minimal Flask application example for development.

Run the development server:

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

Run example development server:

$ FLASK_APP=app.py flask run --debugger -p 5000

The example application will render “Hello World” and display language selectors for english, danish and spanish that allow you to change the text to the given language.

To be able to uninstall the example app:

$ ./app-teardown.sh