{"id":20589444,"url":"https://github.com/ciscodevnet/code-exchange-repo-template","last_synced_at":"2026-03-10T05:33:40.941Z","repository":{"id":38183216,"uuid":"165128349","full_name":"CiscoDevNet/code-exchange-repo-template","owner":"CiscoDevNet","description":"Template for creating a repo for software related to Cisco technologies to be shared with the DevNet community via Code Exchange","archived":false,"fork":false,"pushed_at":"2023-11-29T17:47:24.000Z","size":1923,"stargazers_count":36,"open_issues_count":1,"forks_count":59,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-05-22T17:34:47.985Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://developer.cisco.com/codeexchange/","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CiscoDevNet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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":"2019-01-10T20:44:33.000Z","updated_at":"2025-03-25T14:05:25.000Z","dependencies_parsed_at":"2024-11-16T07:39:37.595Z","dependency_job_id":null,"html_url":"https://github.com/CiscoDevNet/code-exchange-repo-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CiscoDevNet/code-exchange-repo-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CiscoDevNet%2Fcode-exchange-repo-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CiscoDevNet%2Fcode-exchange-repo-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CiscoDevNet%2Fcode-exchange-repo-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CiscoDevNet%2Fcode-exchange-repo-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CiscoDevNet","download_url":"https://codeload.github.com/CiscoDevNet/code-exchange-repo-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CiscoDevNet%2Fcode-exchange-repo-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30326137,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T05:25:20.737Z","status":"ssl_error","status_checked_at":"2026-03-10T05:25:17.430Z","response_time":106,"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-16T07:29:17.794Z","updated_at":"2026-03-10T05:33:40.907Z","avatar_url":"https://github.com/CiscoDevNet.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Code Exchange Repo Template\r\nThis repository is a template to be used when creating a new repository containing sample code, a sample application, or some other software related to Cisco technologies and to be made available for use by the Cisco DevNet community through [Code Exchange](https://developer.cisco.com/codeexchange/).\r\n\r\n## Instructions\r\n\r\nYou have two options, if you have familiarity with Python, use the cookiecutter steps. Otherwise you can manually create a copy of this repo template. \r\n\r\n\r\n### Cookiecutter Automated Repo Creation\r\n\r\nThis process uses [cookiecutter](https://github.com/audreyr/cookiecutter) to auto-generate the files for you. This is helpful if you create multiple use cases. \r\n\r\n\u003e Note: This template assumes the BSD 3-Clause License, you can change it be other licenses afterwards if that is not what you want.\r\n\r\n\r\n1. Issue this command `pip install cookiecutter` to get ready to use the template.\r\n2. Use this command and answer the questions: `cookiecutter https://github.com/CiscoDevNet/code-exchange-repo-template`\r\n3. Update the [README](./README.md), replacing the contents below as described in text within each section of the README. Feel free to combine or omit sections where appropriate. \r\n4. Update the [LICENSE](./LICENSE), replacing the file with the license selected for your code. See the [*Licensing info*](https://github.com/CiscoDevNet/code-exchange-repo-template/tree/main/manual-sample-repo#licensing-info) section of this README for more info. \r\n5. Delete these instructions and everything up to the _Project Title_ from the README.\r\n6. Write some great software and [submit](https://developer.cisco.com/codeexchange/github/submit) it to Code Exchange and/or Automation Exchange.\r\n\r\n\r\n\r\n#### Example \r\n```bash\r\nuse-cases$ cookiecutter https://github.com/CiscoDevNet/code-exchange-repo-template\r\nproject_name [my-awesome-devnet-code-exchange-project]: my-first-project\r\nproject_description [baseline DevNet Code Exchange Project]: New Things to come!\r\nauthor_name [Your Name Here]: User Name\r\nauthor_email [youremail@domain.com]: user@cisco.com\r\nuse-cases$ tree\r\ndevnet-code-exchange/              my-first-project/\r\ncookiecutter-devnet-code-exchange/ \r\nuse-cases$ tree my-first-project/\r\nmy-first-project/\r\n├── LICENSE\r\n├── NOTICE\r\n└── README.md\r\n\r\n0 directories, 3 files\r\nuse-cases$\r\n```\r\n\r\n### Manual Repo Creation\r\n\r\nIf you are only creating one use case, this process is probably easier. \r\n\r\n1. Create a new repository.\r\n2. Copy all the files inside `manual-sample-repo` into your new repository. \r\n3. Update the [README](./README.md), replacing the contents below as described in text within each section of the README. Feel free to combine or omit sections where appropriate. \r\n4. Update the [LICENSE](./LICENSE), replacing the file with the license selected for your code. See the [*Licensing info*](https://github.com/CiscoDevNet/code-exchange-repo-template/tree/main/manual-sample-repo#licensing-info) section of this README for more info. \r\n5. Delete these instructions and everything up to the _Project Title_ from the README.\r\n6. Write some great software and [submit](https://developer.cisco.com/codeexchange/github/submit) it to Code Exchange and/or Automation Exchange.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fciscodevnet%2Fcode-exchange-repo-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fciscodevnet%2Fcode-exchange-repo-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fciscodevnet%2Fcode-exchange-repo-template/lists"}