{"id":34163888,"url":"https://github.com/deild/myapp","last_synced_at":"2026-03-09T23:31:32.223Z","repository":{"id":95819796,"uuid":"133421564","full_name":"deild/myapp","owner":"deild","description":"Golang cli application, based on","archived":false,"fork":false,"pushed_at":"2018-05-23T19:08:57.000Z","size":14,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-18T04:49:34.623Z","etag":null,"topics":["cli","go","goreleaser","mage"],"latest_commit_sha":null,"homepage":"https://carlosbecker.com/posts/golang-cli-apps/","language":"Go","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/deild.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":"2018-05-14T21:07:16.000Z","updated_at":"2023-02-14T20:15:22.000Z","dependencies_parsed_at":"2023-08-21T05:00:41.916Z","dependency_job_id":null,"html_url":"https://github.com/deild/myapp","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/deild/myapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deild%2Fmyapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deild%2Fmyapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deild%2Fmyapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deild%2Fmyapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deild","download_url":"https://codeload.github.com/deild/myapp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deild%2Fmyapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30316771,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T20:05:46.299Z","status":"ssl_error","status_checked_at":"2026-03-09T19:57:04.425Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["cli","go","goreleaser","mage"],"created_at":"2025-12-15T09:30:47.830Z","updated_at":"2026-03-09T23:31:32.216Z","avatar_url":"https://github.com/deild.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Myapp\n\n[![GitHub Release](https://img.shields.io/github/release/deild/myapp.svg)](https://github.com/deild/myapp/releases/latest)\n[![Go Doc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/deild/myapp)\n[![Software License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n[![Powered By: GoReleaser](https://img.shields.io/badge/powered%20by-goreleaser-blue.svg)](https://github.com/goreleaser)\n[![SemVer](https://img.shields.io/badge/semver-2.0.0-blue.svg)](https://semver.org/)\n\n## Overview\n\nMyapp is an myapp app.\n\n## Folder structure\n\nA basic tree would look like:\n\n    .\n    ├── commands\n    │   ├── myapp.go\n    │   └── myapp_test.go\n    ├── script\n    │   └── setup\n    ├── .gitignore\n    ├── .travis.yml\n    ├── CONTRIBUTING.md\n    ├── Gopkg.lock\n    ├── Gopkg.toml\n    ├── LICENSE\n    ├── README.md\n    ├── goreleaser.yml\n    ├── magefile.go\n    └── main.go\n\n- commands/myapp.go and myapp_test.go: is the “library” of the application and its respective files. Could be more than one file, of course;\n- script: script help me start new projects faster;\n- .gitignore: some standard gitignore, vendor, binary, etc;\n- .travis.yml: tell Travis CI what to do;\n- CONTRIBUTING.md: newcommer guide;\n- Gopkg.lock and Gopkg.toml: dependencies locks and manifest;\n- README.md: what you are reading;\n- LICENSE: MIT;\n- goreleaser.yml: the GoReleaser configuration;\n- magefile.go: contains common tasks for the project, like formating, testing, linting, etc;\n- main.go: is the cli entrypoint;\n\n## Starting a new project\n\nTo use it, you can simply:\n\n```bash\ncd $GOPATH/src/github.com/youruser\ngit clone git@github.com/deild/myapp.git yourapp\ncd myapp\n./script/setup youruser YourApp # notice the case on the second arg\n```\n\nIt is actually a working app (that does nothing), to run it:\n\n```bash\nmage vendor\ngo run main.go -h\n```\n\nNow, you create a [GitHub repository](https://help.github.com/articles/create-a-repo/) for your new app and push it:\n\n```bash\ngit remote add origin https://github.com/youruser/yourapp.git\ngit push origin master\n```\n\nIf you check the README file, you’ll see that there are already a few badges on the bottom, but some of them are not working. Let’s fix them!\n\n## Contributing to Myapp\n\nFirst of all, you can read the [CONTRIBUTING.md](CONTRIBUTING.md) file. It is the _“newcomer guide”_.\n\n## Health\n\n[![Travis](https://img.shields.io/travis/deild/myapp.svg)](https://travis-ci.org/deild/myapp)\n[![CodeFactor](https://www.codefactor.io/repository/github/deild/myapp/badge)](https://www.codefactor.io/repository/github/deild/myapp)\n[![Coverage Status](https://coveralls.io/repos/github/deild/myapp/badge.svg?branch=master)](https://coveralls.io/github/deild/myapp?branch=master)\n[![codecov](https://codecov.io/gh/deild/myapp/branch/master/graph/badge.svg)](https://codecov.io/gh/deild/myapp)\n[![Go Report Card](https://goreportcard.com/badge/github.com/deild/myapp)](https://goreportcard.com/report/github.com/deild/myapp)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeild%2Fmyapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeild%2Fmyapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeild%2Fmyapp/lists"}