{"id":24350923,"url":"https://github.com/tleonhardt/example-uvcookiecutter","last_synced_at":"2026-02-27T19:02:28.673Z","repository":{"id":271478573,"uuid":"913590775","full_name":"tleonhardt/example-uvcookiecutter","owner":"tleonhardt","description":"This is an example project created using the cookicutter-uv template: https://github.com/fpgmaas/cookiecutter-uv","archived":false,"fork":false,"pushed_at":"2025-01-08T01:38:49.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T04:25:53.422Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tleonhardt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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":"2025-01-08T01:33:48.000Z","updated_at":"2025-01-08T01:38:52.000Z","dependencies_parsed_at":"2025-01-08T02:32:32.008Z","dependency_job_id":"3ed8823e-49a0-4333-9548-1fa0997a2375","html_url":"https://github.com/tleonhardt/example-uvcookiecutter","commit_stats":null,"previous_names":["tleonhardt/example-uvcookiecutter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tleonhardt/example-uvcookiecutter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tleonhardt%2Fexample-uvcookiecutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tleonhardt%2Fexample-uvcookiecutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tleonhardt%2Fexample-uvcookiecutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tleonhardt%2Fexample-uvcookiecutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tleonhardt","download_url":"https://codeload.github.com/tleonhardt/example-uvcookiecutter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tleonhardt%2Fexample-uvcookiecutter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266235559,"owners_count":23897181,"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":"2025-01-18T14:38:11.054Z","updated_at":"2026-02-27T19:02:28.568Z","avatar_url":"https://github.com/tleonhardt.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# example-uvcookiecutter\n\n[![Release](https://img.shields.io/github/v/release/tleonhardt/example-uvcookiecutter)](https://img.shields.io/github/v/release/tleonhardt/example-uvcookiecutter)\n[![Build status](https://img.shields.io/github/actions/workflow/status/tleonhardt/example-uvcookiecutter/main.yml?branch=main)](https://github.com/tleonhardt/example-uvcookiecutter/actions/workflows/main.yml?query=branch%3Amain)\n[![codecov](https://codecov.io/gh/tleonhardt/example-uvcookiecutter/branch/main/graph/badge.svg)](https://codecov.io/gh/tleonhardt/example-uvcookiecutter)\n[![Commit activity](https://img.shields.io/github/commit-activity/m/tleonhardt/example-uvcookiecutter)](https://img.shields.io/github/commit-activity/m/tleonhardt/example-uvcookiecutter)\n[![License](https://img.shields.io/github/license/tleonhardt/example-uvcookiecutter)](https://img.shields.io/github/license/tleonhardt/example-uvcookiecutter)\n\nThis is a template repository for Python projects that use uv for their dependency management.\n\n- **Github repository**: \u003chttps://github.com/tleonhardt/example-uvcookiecutter/\u003e\n- **Documentation** \u003chttps://tleonhardt.github.io/example-uvcookiecutter/\u003e\n\n## Getting started with your project\n\n### 1. Create a New Repository\n\nFirst, create a repository on GitHub with the same name as this project, and then run the following commands:\n\n```bash\ngit init -b main\ngit add .\ngit commit -m \"init commit\"\ngit remote add origin git@github.com:tleonhardt/example-uvcookiecutter.git\ngit push -u origin main\n```\n\n### 2. Set Up Your Development Environment\n\nThen, install the environment and the pre-commit hooks with\n\n```bash\nmake install\n```\n\nThis will also generate your `uv.lock` file\n\n### 3. Run the pre-commit hooks\n\nInitially, the CI/CD pipeline might be failing due to formatting issues. To resolve those run:\n\n```bash\nuv run pre-commit run -a\n```\n\n### 4. Commit the changes\n\nLastly, commit the changes made by the two steps above to your repository.\n\n```bash\ngit add .\ngit commit -m 'Fix formatting issues'\ngit push origin main\n```\n\nYou are now ready to start development on your project!\nThe CI/CD pipeline will be triggered when you open a pull request, merge to main, or when you create a new release.\n\nTo finalize the set-up for publishing to PyPI, see [here](https://fpgmaas.github.io/cookiecutter-uv/features/publishing/#set-up-for-pypi).\nFor activating the automatic documentation with MkDocs, see [here](https://fpgmaas.github.io/cookiecutter-uv/features/mkdocs/#enabling-the-documentation-on-github).\nTo enable the code coverage reports, see [here](https://fpgmaas.github.io/cookiecutter-uv/features/codecov/).\n\n## Releasing a new version\n\n---\n\nRepository initiated with [fpgmaas/cookiecutter-uv](https://github.com/fpgmaas/cookiecutter-uv).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftleonhardt%2Fexample-uvcookiecutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftleonhardt%2Fexample-uvcookiecutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftleonhardt%2Fexample-uvcookiecutter/lists"}