git clone https://github.com/nickmoreton/wagtail-qrcode
python3 -m venv venv
source venv/bin/activate
pip install -e ".[development,testing]"
make migrate && make admin && make run
The app can be viewed at http://localhost:8000
You can log into the admin at http://localhost:8000/admin and use admin
for the username & admin
for the password.
You can use the commands in the Make file to conveniently run various commands.
make migrate
run migrationsmake run
run the development servermake test
run the testsmake admin
to quickly setup a superuser account with the above login details.make lint
to run pre-commit --all-filesmake mail
to run a docker container forMailHog
The app uses django tests and has tox
setup for running them against the compatible Wagtail and Django versions.
Run:
tox