Lizard-damage is the functionality of the "Waterschadeschatter" site, in a Django app. It's also a Lizard app, but besides using the Lizard base template, hardly any of its functionality is used.
Prerequisite: recent docker install (including docker-compose).
One-time setup:
$ docker-compose build $ docker-compose run web buildout $ docker-compose run web bin/django syncdb $ docker-compose run web bin/django migrate
Regular commands:
$ docker-compose run web bin/test $ docker-compose up
Alternatively to the last one:
$ docker-compose run --service-ports web bin/django runserver 0.0.0.0:5000