{"id":19625467,"url":"https://github.com/origamicomet/barebones","last_synced_at":"2026-05-08T03:08:30.236Z","repository":{"id":146847948,"uuid":"107737314","full_name":"origamicomet/barebones","owner":"origamicomet","description":":construction: No nonsense project template.","archived":false,"fork":false,"pushed_at":"2017-10-22T06:46:44.000Z","size":18,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-26T19:52:00.588Z","etag":null,"topics":["build","linux","mac","template","tools","windows"],"latest_commit_sha":null,"homepage":null,"language":"Batchfile","has_issues":false,"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/origamicomet.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":"CONTRIBUTING","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-10-20T23:58:26.000Z","updated_at":"2018-02-03T04:46:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"6b70661c-c9be-42b8-8be0-a0d22d6a375f","html_url":"https://github.com/origamicomet/barebones","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/origamicomet/barebones","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/origamicomet%2Fbarebones","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/origamicomet%2Fbarebones/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/origamicomet%2Fbarebones/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/origamicomet%2Fbarebones/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/origamicomet","download_url":"https://codeload.github.com/origamicomet/barebones/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/origamicomet%2Fbarebones/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32764790,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T02:36:36.067Z","status":"ssl_error","status_checked_at":"2026-05-08T02:36:07.210Z","response_time":54,"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":["build","linux","mac","template","tools","windows"],"created_at":"2024-11-11T11:41:49.558Z","updated_at":"2026-05-08T03:08:30.216Z","avatar_url":"https://github.com/origamicomet.png","language":"Batchfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n  Barebones\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  :construction: Our no nonsense project template.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://ci.appveyor.com/project/origamicomet/barebones/branch/master\"\u003e\n    \u003cimg alt=\"Build Status for Windows\" src=\"https://img.shields.io/appveyor/ci/origamicomet/barebones.svg\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://travis-ci.org/origamicomet/barebones\"\u003e\n    \u003cimg alt=\"Build Status for Mac \u0026 Linux\" src=\"https://img.shields.io/travis/origamicomet/barebones/master.svg?label=build\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://github.com/origamicomet/barebones/blob/master/LICENSE\"\u003e\n    \u003cimg alt=\"License\" src=\"https://img.shields.io/badge/license-CC0-blue.svg\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## Intro\n\nThis repository serves as a no nonsense template for developing cross-platform applications and libraries.\n\n## Goals\n\n* Standardized directory structure and tooling.\n\n  This repository serves as the basis for the directory structure of all projects under our dominion. It also defines the interface used to build and package our software.\n\n* No nonsense build infrastructure.\n\n  Builds can be performed without any dependencies. If required tooling is not found, it will be fetched and cached on your behalf. An optional convenience wrapper hides the nitty-gritty and makes building a one liner. Automated builds are setup and ready to go.\n\n* Reasonable defaults.\n\n  Various choices have been made on your behalf to best align development with our methodologies and workflow. You can change them, but should not need to.\n\n## Building\n\nBuild infrastructure is structured to minimize dependencies. As such, builds can be performed without installing anything beside the necessary toolchains. Any required tools, if not found, will be fetched and cached into `_build/tools/cache` automatically. You can disable automatic fetching, opting to fail if a tool cannot be found by defining `DO_NOT_FETCH_TOOLS`.\n\nTo kick off a build, you can call the underlying build scripts:\n\n```sh\n# Build for Windows using Visual Studio.\n_build\\build_debug_windows_32.bat\n_build\\build_release_windows_32.bat\n_build\\build_debug_windows_64.bat\n_build\\build_release_windows_64.bat\n\n# Build for Mac using Clang or GCC.\n_build\\build_debug_mac_32.sh\n_build\\build_release_mac_32.sh\n_build\\build_debug_mac_64.sh\n_build\\build_release_mac_64.sh\n\n# Build for Linux using GCC or Clang.\n_build\\build_debug_linux_32.sh\n_build\\build_release_linux_32.sh\n_build\\build_debug_linux_64.sh\n_build\\build_release_linux_64.sh\n```\n\nYou can override the toolchain used by defining `TOOLCHAIN`. Otherwise a reasonable default is picked.\n\nTo reduce tedium, an optional convenience script `build.rb` is provided. It can be used to drive builds, calling the underlying build scripts on your behalf. Run `build.rb help` for details.\n\n## Packaging\n\nPackaging hasn't been worked out yet.\n\n## Questions\n\nFor questions, please use our `#development` channel.\n\n## Contributing\n\nA [contribution guide](https://github.com/origamicomet/barebones/blob/master/CONTRIBUTING) and [code of conduct](https://github.com/origamicomet/barebones/blob/master/CODE_OF_CONDUCT) are provided.\n\n## Changelog\n\nA detailed [changelog](https://github.com/origamicomet/barebones/blob/master/CHANGELOG) is maintained.\n\n## License\n\nThis template, and descendants, are given to the public domain with alternative stipulations made _just-in-case_ (CC0).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forigamicomet%2Fbarebones","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Forigamicomet%2Fbarebones","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forigamicomet%2Fbarebones/lists"}