{"id":36953137,"url":"https://github.com/bearcove/dodeca","last_synced_at":"2026-05-24T23:10:55.383Z","repository":{"id":327080252,"uuid":"1107761535","full_name":"bearcove/dodeca","owner":"bearcove","description":"A salsa-infused static site generator","archived":false,"fork":false,"pushed_at":"2026-01-06T22:59:59.000Z","size":7139,"stargazers_count":157,"open_issues_count":30,"forks_count":7,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-01-08T13:11:29.162Z","etag":null,"topics":["rust","server","ssg","template","website"],"latest_commit_sha":null,"homepage":"https://dodeca.bearcove.eu/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bearcove.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["fasterthanlime"],"patreon":"fasterthanlime"}},"created_at":"2025-12-01T15:21:29.000Z","updated_at":"2026-01-07T07:56:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bearcove/dodeca","commit_stats":null,"previous_names":["bearcove/dodeca"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/bearcove/dodeca","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bearcove%2Fdodeca","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bearcove%2Fdodeca/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bearcove%2Fdodeca/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bearcove%2Fdodeca/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bearcove","download_url":"https://codeload.github.com/bearcove/dodeca/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bearcove%2Fdodeca/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28385647,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T12:01:30.995Z","status":"ssl_error","status_checked_at":"2026-01-13T12:00:09.625Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["rust","server","ssg","template","website"],"created_at":"2026-01-13T12:37:26.805Z","updated_at":"2026-05-24T23:10:55.375Z","avatar_url":"https://github.com/bearcove.png","language":"Rust","funding_links":["https://github.com/sponsors/fasterthanlime","https://patreon.com/fasterthanlime"],"categories":[],"sub_categories":[],"readme":"# dodeca\n\n[![MIT + Apache 2.0](https://img.shields.io/badge/license-MIT%20%2B%20Apache%202.0-blue)](./LICENSE-MIT)\n[![salsa | yes please](https://img.shields.io/badge/salsa-yes%20please-green)](https://crates.io/crates/salsa)\n\nA fully incremental static site generator.\n\n## Philosophy\n\n**Dev mode = Production mode.** Unlike other static site generators that take shortcuts\nin development (skipping minification, using original asset paths, etc.), dodeca serves\nexactly what you'll get in production: cache-busted URLs, minified HTML, subsetted fonts,\nresponsive images—the works. Even font subsetting runs in dev!\n\nThis is possible because dodeca uses picante for incremental computation. Every\ntransformation is a cached query. Change a file and only the affected queries re-run.\nFirst page load builds what's needed; subsequent requests are instant.\n\n**Custom template engine.** Dodeca includes its own Jinja-like template engine. This gives\nyou the power of a real language (conditionals, loops, variable interpolation) without\nthe complexity of learning a new syntax. The engine includes rich diagnostics with\nline/column information for template errors.\n\n**Plugin architecture.** Dodeca's plugin system (via the `plugcard` crate) allows extending\nthe build pipeline without modifying the core. Image optimization, CSS processing, syntax\nhighlighting, and more can be plugged in independently.\n\n## Getting Started\n\nInstall dodeca:\n\nThe recommended way to install dodeca is from GitHub releases. Releases ship the `ddc` binary plus a set of helper binaries (`ddc-cell-*`) used for things like image processing, Sass, search indexing, etc.\n\n```bash\ncurl --proto '=https' --tlsv1.2 -LsSf https://github.com/bearcove/dodeca/releases/latest/download/dodeca-installer.sh | sh\n```\n\nSupported by the installer:\n- macOS (Apple Silicon / `arm64`)\n- Linux (`x86_64`)\n\nAfter that, you can create a new site:\n\n```bash\nddc init my-site\ncd my-site\nddc serve\n```\n\nThis starts a development server at `http://localhost:8080` with live reload.\n\n## Key Features\n\n- **Incremental builds**: Only affected files are re-processed on changes\n- **Cache-busted URLs**: Assets get unique names based on content hash\n- **Image optimization**: Built-in image processing with responsive variants\n- **Font subsetting**: Automatically subset fonts to used characters\n- **HTML minification**: Minify HTML in production builds\n- **Template engine**: Powerful, easy-to-learn Jinja-like templates\n- **Code execution**: Execute code samples and capture output\n- **Link checking**: Verify all links in your site\n- **Extensible**: Plugin system for custom transformations\n\n## Structure\n\nThe dodeca workspace includes:\n\n- **dodeca**: Main SSG binary (`ddc` CLI)\n- **gingembre**: Template engine with rich diagnostics\n- **plugcard**: Plugin system for extending the build pipeline\n- **dodeca-\\***: Individual plugins for various transformations\n- **livereload-client**: WASM client for live reload in development\n\n## Development\n\nBuild everything:\n\n```bash\ncargo xtask build\n```\n\nRun tests:\n\n```bash\ncargo test --workspace\n```\n\nBuild the documentation:\n\n```bash\ncargo doc --workspace --no-deps --open\n```\n\n## Contributing\n\nContributions are welcome! Please open issues and pull requests on GitHub.\n\n\n## Sponsors\n\nThanks to all individual sponsors:\n\n\u003cp\u003e \u003ca href=\"https://github.com/sponsors/fasterthanlime\"\u003e\n\u003cpicture\u003e\n\u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./static/sponsors-v3/github-dark.svg\"\u003e\n\u003cimg src=\"./static/sponsors-v3/github-light.svg\" height=\"40\" alt=\"GitHub Sponsors\"\u003e\n\u003c/picture\u003e\n\u003c/a\u003e \u003ca href=\"https://patreon.com/fasterthanlime\"\u003e\n    \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./static/sponsors-v3/patreon-dark.svg\"\u003e\n    \u003cimg src=\"./static/sponsors-v3/patreon-light.svg\" height=\"40\" alt=\"Patreon\"\u003e\n    \u003c/picture\u003e\n\u003c/a\u003e \u003c/p\u003e\n\n...along with corporate sponsors:\n\n\u003cp\u003e \u003ca href=\"https://aws.amazon.com\"\u003e\n\u003cpicture\u003e\n\u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./static/sponsors-v3/aws-dark.svg\"\u003e\n\u003cimg src=\"./static/sponsors-v3/aws-light.svg\" height=\"40\" alt=\"AWS\"\u003e\n\u003c/picture\u003e\n\u003c/a\u003e \u003ca href=\"https://zed.dev\"\u003e\n\u003cpicture\u003e\n\u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./static/sponsors-v3/zed-dark.svg\"\u003e\n\u003cimg src=\"./static/sponsors-v3/zed-light.svg\" height=\"40\" alt=\"Zed\"\u003e\n\u003c/picture\u003e\n\u003c/a\u003e \u003ca href=\"https://depot.dev?utm_source=facet\"\u003e\n\u003cpicture\u003e\n\u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./static/sponsors-v3/depot-dark.svg\"\u003e\n\u003cimg src=\"./static/sponsors-v3/depot-light.svg\" height=\"40\" alt=\"Depot\"\u003e\n\u003c/picture\u003e\n\u003c/a\u003e \u003c/p\u003e\n\n...without whom this work could not exist.\n\n## License\n\nLicensed under either of:\n\n- Apache License, Version 2.0 ([LICENSE-APACHE](./LICENSE-APACHE) or \u003chttp://www.apache.org/licenses/LICENSE-2.0\u003e)\n- MIT license ([LICENSE-MIT](./LICENSE-MIT) or \u003chttp://opensource.org/licenses/MIT\u003e)\n\nat your option.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbearcove%2Fdodeca","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbearcove%2Fdodeca","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbearcove%2Fdodeca/lists"}