{"id":20153584,"url":"https://github.com/seqan/library-template","last_synced_at":"2026-03-19T14:11:14.245Z","repository":{"id":65746143,"uuid":"598550530","full_name":"seqan/library-template","owner":"seqan","description":"WIP","archived":false,"fork":false,"pushed_at":"2023-02-08T10:30:57.000Z","size":167,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-01-13T12:23:54.154Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CMake","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/seqan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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-02-07T10:46:38.000Z","updated_at":"2024-01-17T14:47:26.000Z","dependencies_parsed_at":"2023-05-15T07:31:01.292Z","dependency_job_id":null,"html_url":"https://github.com/seqan/library-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqan%2Flibrary-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqan%2Flibrary-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqan%2Flibrary-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqan%2Flibrary-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seqan","download_url":"https://codeload.github.com/seqan/library-template/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241592985,"owners_count":19987468,"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","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-11-13T23:19:48.429Z","updated_at":"2026-03-06T19:03:29.072Z","avatar_url":"https://github.com/seqan.png","language":"CMake","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Library_Template\n\n[![build status][1]][2]\n[![codecov][3]][4]\n[![license][5]][6]\n[![latest release][7]][8]\n![platforms][9]\n\n\u003c!--\n    Above uses reference-style links with numbers.\n    See also https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#links.\n\n    For example, `[![build status][1]][2]` evaluates to the following:\n        `[link_text][2]`\n        `[2]` is a reference to a link, i.e. `[link_text](https://...)`\n\n        `[link_text]` = `[![build status][1]]`\n        `[1]` is once again a reference to a link - this time an image, i.e. `[![build status](https://...)]\n        `![build status]` is the text that should be displayed if the linked resource (`[1]`) is not available\n\n    `[![build status][1]][2]` hence means:\n    Show the picture linked under `[1]`. In case it cannot be displayed, show the text \"build status\" instead.\n    The picture, or alternative text, should link to `[2]`.\n--\u003e\n\n[1]: https://img.shields.io/github/actions/workflow/status/seqan/library-template/ci_linux.yml?branch=main\u0026style=flat\u0026logo=github\u0026label=CI \"Open GitHub actions page\"\n[2]: https://github.com/seqan/library-template/actions?query=branch%3Amain\n[3]: https://codecov.io/gh/seqan/library-template/branch/main/graph/badge.svg?token=BH1FQiBBle \"Open Codecov page\"\n[4]: https://codecov.io/gh/seqan/library-template\n[5]: https://img.shields.io/badge/license-BSD-green.svg \"Open Copyright page\"\n[6]: https://github.com/seqan/library-template/blob/main/LICENSE.md\n[7]: https://img.shields.io/github/release/seqan/library-template.svg \"Get the latest release\"\n[8]: https://github.com/seqan/library-template/releases/latest\n[9]: https://img.shields.io/badge/platform-linux%20%7C%20bsd%20%7C%20osx-informational.svg\n\n## Quick start\n\nYou may want to replace `LIBRARY_TEMPLATE` with your library name:\n\n```bash\n# Rename files\nfind $(pwd) -type f -not -path '*/\\.git/*' -iname \"library_template*\" -exec bash -c 'mv $1 ${1/library_template/\u003cyour_lib\u003e}' bash {} \\;\n# Rename directories\nfind $(pwd) -type d -not -path '*/\\.git/*' -iname \"library_template*\" -exec bash -c 'mv $1 ${1/library_template/\u003cyour_lib\u003e}' bash {} \\;\n# Rename occurrences in files\nfind $(pwd) -type f -not -path '*/\\.git/*' -exec sed -i 's/LIBRARY_TEMPLATE/\u003cYOUR_LIB\u003e/g' {} \\;\nfind $(pwd) -type f -not -path '*/\\.git/*' -exec sed -i 's/Library_Template/\u003cYour_Lib\u003e/g' {} \\;\nfind $(pwd) -type f -not -path '*/\\.git/*' -exec sed -i 's/library_template/\u003cyour_lib\u003e/g' {} \\;\n# Rename URLs\nfind $(pwd) -type f -not -path '*/\\.git/*' -exec sed -i 's/seqan\\/library-template/\u003crepo_owner\u003e\\/\u003crepo_name\u003e/g' {} \\;\n```\n\n## Updating\n\nPull history of the template:\n```bash\ngit remote add template https://github.com/seqan/library-template\ngit fetch template\ngit rebase --onto template/main SHA_of_first_commit_in_your_repo main\n# e.g. `git rebase --onto template/main 45a5e1dce4b440fc64fd1cd8d96c0370053b985a main`\n```\nThe first commit is usually the one where you update all the names.\n\nAfter this, `git merge template/main` can be used to merge changes.\n\n## Sponsorships\n\n[![Vercel](https://raw.githubusercontent.com/seqan/library-template/main/test/documentation/.vercel/powered-by-vercel.svg)](https://vercel.com/?utm_source=seqan\u0026utm_campaign=oss)\n\nVercel is kind enough to sponsor our documentation preview-builds within our pull requests. Check them out!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseqan%2Flibrary-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseqan%2Flibrary-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseqan%2Flibrary-template/lists"}