Audits reports for
- Accessibility (RGAA)
- Performance (lighthouse)
- Eco-conception (RGESN)
- Green-IT (73 best practices)
- Sobriété éditoriale,
- Opquast,
- RSE (Cigref)
hugo mod get github.com/lowdit/frago
Run as a local server
# Serve locally to http://localhost:1313/audits/
hugo serve
Or run with docker compose (not that due to a bug, some content is not regenerated, and need to run again to be generated)
docker compose up server
Content is generated into public
## Build for production
hugo --gc --minify --buildFuture --baseURL https://audits.test.iroco.co
## With docker compose
docker compose run --rm build-staging
Content is generated into public
## Build for production
hugo --gc --minify --buildFuture --baseURL https://audits.iroco.co
## With docker compose
docker compose run --rm build-prod
--gc
: enable to run some cleanup tasks (remove unused cache files) after the build--minify
: minify any supported output format (HTML, XML etc.)--buildFuture
: include content with publishdate in the future
# Build for local and preview with vite
hugo --gc --minify --buildFuture --baseURL http://localhost:4173/
npx vite preview --outDir public