{"id":22473431,"url":"https://github.com/lecrisut/fmf-jinja","last_synced_at":"2026-01-30T04:44:21.594Z","repository":{"id":187493987,"uuid":"676984291","full_name":"LecrisUT/fmf-jinja","owner":"LecrisUT","description":"Jinja template engine using FMF metadata","archived":false,"fork":false,"pushed_at":"2024-11-21T18:59:33.000Z","size":128,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-23T12:51:14.694Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LecrisUT.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2023-08-10T13:18:09.000Z","updated_at":"2024-11-21T18:59:38.000Z","dependencies_parsed_at":"2024-11-16T22:25:56.310Z","dependency_job_id":"f53b9eea-77e8-4759-a39d-ec3cefaf1f12","html_url":"https://github.com/LecrisUT/fmf-jinja","commit_stats":null,"previous_names":["lecrisut/fmf-jinja"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/LecrisUT/fmf-jinja","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LecrisUT%2Ffmf-jinja","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LecrisUT%2Ffmf-jinja/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LecrisUT%2Ffmf-jinja/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LecrisUT%2Ffmf-jinja/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LecrisUT","download_url":"https://codeload.github.com/LecrisUT/fmf-jinja/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LecrisUT%2Ffmf-jinja/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279183660,"owners_count":26121444,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-16T02:00:06.019Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-12-06T12:28:43.822Z","updated_at":"2025-10-16T11:31:06.236Z","avatar_url":"https://github.com/LecrisUT.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FMF-Jinja\n\n[![CI Status][ci-badge]][ci-link]\n[![Codecov Status][codecov-badge]][codecov-link]\n\n[![Documentation Status][rtd-badge]][rtd-link]\n\n\u003c!-- SPHINX-START --\u003e\n\n[Jinja templating engine][jinja] using [fmf metadata][fmf].\n\n## Concept\n\nThe scope of this project is to take a templated folder and generate *multiple* output\nfolders with relation to one another. Consider the following fmf file example in\n[`example/minimal`]:\n\n```yaml\nvar1: 42\nvar2: Default value\n\n/rootA:\n/rootB:\n  var2: Overwritten\n```\n\nThis is interpreted by fmf as:\n\n```console\n$ fmf show --path example/minimal\n/rootA\nvar1: 42\nvar2: Default value\n\n/rootB\nvar1: 42\nvar2: Overwritten\n```\n\nThese variables (`var1`, `var2`) are then used as variables inside a jinja template\ncreating templated folders under `rootA` and `rootB` with their respective values. Try\nit out by running\n\n```console\n$ fmf-jinja -r example/minimal generate -o /path/to/some/output/folder\n```\n\n\u003c!-- SPHINX-END --\u003e\n\nTo appreciate the full capabilities see the [fmf features] and [jinja template guide].\nAlso check the [online documentation] for more examples and detailed usage guide.\n\n[ci-badge]: https://github.com/LecrisUT/fmf-jinja/actions/workflows/ci.yaml/badge.svg?branch=main\u0026event=push\n[ci-link]: https://github.com/LecrisUT/fmf-jinja/actions?query=branch%3Amain+event%3Apush\n[codecov-badge]: https://codecov.io/gh/LecrisUT/fmf-jinja/graph/badge.svg?token=WCTLWU6M2O\n[codecov-link]: https://codecov.io/gh/LecrisUT/fmf-jinja\n[fmf]: https://fmf.readthedocs.io\n[fmf features]: https://fmf.readthedocs.io/en/stable/features.html\n[jinja]: https://jinja.palletsprojects.com\n[jinja template guide]: https://jinja.palletsprojects.com/en/stable/templates/\n[online documentation]: https://fmf-jinja.readthedocs.io/\n[rtd-badge]: https://readthedocs.org/projects/fmf-jinja/badge/?version=latest\n[rtd-link]: https://fmf-jinja.readthedocs.io/en/latest/?badge=latest\n[`example/minimal`]: example/minimal\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flecrisut%2Ffmf-jinja","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flecrisut%2Ffmf-jinja","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flecrisut%2Ffmf-jinja/lists"}