No description
Find a file
2025-10-29 21:59:54 +01:00
library Custom error pages 2025-10-29 21:59:54 +01:00
tests Added initial flask structure 2025-10-28 08:38:38 +01:00
.gitignore Added initial flask structure 2025-10-28 08:38:38 +01:00
README Added mock-data command 2025-10-28 22:11:46 +01:00
requirements.txt Added initial flask structure 2025-10-28 08:38:38 +01:00

LIBRARY

To run this app in development setting, first create a virtual environment for
installing Flask. Install the requirements. Then, initialise the database and
run the application.

You can do that using the following commands:

    python3 -m venv venv
    pip3 install -r requirements.txt
    flask --app library init-db
    flask --app library run --debug

If wanted you can also generate some mock data using:

    flask --app library mock-data

but make sure your database is empty beforehand!