Flask integration for Hypergen, with a repo-root examples/ app for local development.
Sync the dev environment:
uv syncStart the example app:
flask --app examples/app.py run --debugOpen
http://127.0.0.1:5000/
Project structure and tooling mostly derives from the Coppy, see its documentation for context and additional instructions.
This project can be updated from the upstream repo, see Updating a Project.
From zero to hero (passing tests that is):
Ensure host dependencies are installed
Start docker service dependencies (if applicable):
docker compose up -dSync project virtualenv w/ lock file:
uv syncConfigure prek:
prek installRun tests:
nox
Versions are date based. A bump action exists to help manage versions:
# Show current version
mise bump --show
# Bump version based on date, tag, and push:
mise bump
# See other options
mise bump -- --help