{"id":20640115,"url":"https://github.com/maresb/cookiecutter-micromamba-devcontainer","last_synced_at":"2026-03-07T08:32:11.394Z","repository":{"id":45675670,"uuid":"483009265","full_name":"maresb/cookiecutter-micromamba-devcontainer","owner":"maresb","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-13T21:30:39.000Z","size":129,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-16T11:37:53.276Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maresb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2022-04-18T21:58:10.000Z","updated_at":"2024-06-13T21:25:03.000Z","dependencies_parsed_at":"2023-11-17T16:45:41.924Z","dependency_job_id":"d53f473e-ee87-48c3-a9b9-30b9ac73463a","html_url":"https://github.com/maresb/cookiecutter-micromamba-devcontainer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/maresb/cookiecutter-micromamba-devcontainer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maresb%2Fcookiecutter-micromamba-devcontainer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maresb%2Fcookiecutter-micromamba-devcontainer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maresb%2Fcookiecutter-micromamba-devcontainer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maresb%2Fcookiecutter-micromamba-devcontainer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maresb","download_url":"https://codeload.github.com/maresb/cookiecutter-micromamba-devcontainer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maresb%2Fcookiecutter-micromamba-devcontainer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30209936,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"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":[],"created_at":"2024-11-16T15:28:01.616Z","updated_at":"2026-03-07T08:32:11.357Z","avatar_url":"https://github.com/maresb.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Example Cookiecutter template for using micromamba-devcontainer\n\n| | |\n| --- | --- |\n| This project | [![GitLab](https://img.shields.io/badge/GitLab-bmares/cookiecutter--micromamba--devcontainer-blue.svg?logo=gitlab)](https://gitlab.com/bmares/cookiecutter-micromamba-devcontainer) [![GitHub](https://img.shields.io/badge/GitHub-maresb/cookiecutter--micromamba--devcontainer-blue.svg?logo=github)](https://github.com/maresb/cookiecutter-micromamba-devcontainer) |\n| Usage example | [![GitHub](https://img.shields.io/badge/GitHub-maresb/micromamba--devcontainer--example-blue.svg?logo=github)](https://github.com/maresb/micromamba-devcontainer-example) |\n| Base image | [![GitHub](https://img.shields.io/badge/GitHub-mamba--org/micromamba--devcontainer-blue.svg?logo=github)](https://github.com/mamba-org/micromamba-devcontainer) |\n| Template engine | [![GitHub](https://img.shields.io/badge/GitHub-cruft/cruft-blue.svg?logo=github)](https://github.com/cruft/cruft)\n\n## Setup\n\nThe assumption is that you are developing a Python project and managing the project-level Python dependencies with a modern standards-compliant packaging system like [Hatch](https://github.com/pypa/hatch) or [Flit](https://github.com/pypa/flit). Thus you should have a `pyproject.toml` file in your project directory.\n\nInstall Cruft, change to your project root (the directory inside of which you want to create `.devcontainer`) and run\n\n```bash\ncruft create https://github.com/maresb/cookiecutter-micromamba-devcontainer\n```\n\n(It's possible to replace `cruft create` with `cookiecutter` but then you won't be able to perform updates.)\n\nThen fill in the following variables:\n\n* `package_name`: The name of the main package of your project, as you would `import` it from Python.\n* `timezone`: The [timezone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) to configure in the devcontainer.\n* `packages_dir`: The directory where `package_name` is located (often `src`), or `.` for the project root.\n\nTo update to a newer revision, run\n\n```bash\ncd .devcontainer\ncruft update\n```\n\nIn case you get the error \"Cruft cannot apply updates on an unclean git project\", you can run `git stash` to temporarily stash your tracked files, and then run `git stash pop` to restore them after the update has finished. In case you have only untracked files, you can run `cruft update --allow-untracked-files`.\n\n## More information\n\nPlease refer to [Micromamba Devcontainer](https://github.com/maresb/micromamba-devcontainer).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaresb%2Fcookiecutter-micromamba-devcontainer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaresb%2Fcookiecutter-micromamba-devcontainer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaresb%2Fcookiecutter-micromamba-devcontainer/lists"}