{"id":29210688,"url":"https://github.com/embarkstudios/opensource-website","last_synced_at":"2025-07-02T21:07:35.756Z","repository":{"id":35222095,"uuid":"208264928","full_name":"EmbarkStudios/opensource-website","owner":"EmbarkStudios","description":"🌐 Hub for Embark's open source efforts","archived":false,"fork":false,"pushed_at":"2025-02-07T13:27:11.000Z","size":4149,"stargazers_count":30,"open_issues_count":8,"forks_count":22,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-02-07T14:29:57.128Z","etag":null,"topics":["hacktoberfest","opensource","vue","vuejs"],"latest_commit_sha":null,"homepage":"https://embark.dev","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EmbarkStudios.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE-APACHE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-09-13T12:57:18.000Z","updated_at":"2025-02-07T13:26:47.000Z","dependencies_parsed_at":"2025-02-07T14:27:38.840Z","dependency_job_id":"3ef5e87a-aa47-4f50-aa9e-c8aa92a54173","html_url":"https://github.com/EmbarkStudios/opensource-website","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EmbarkStudios/opensource-website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmbarkStudios%2Fopensource-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmbarkStudios%2Fopensource-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmbarkStudios%2Fopensource-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmbarkStudios%2Fopensource-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EmbarkStudios","download_url":"https://codeload.github.com/EmbarkStudios/opensource-website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmbarkStudios%2Fopensource-website/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263215297,"owners_count":23431895,"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":["hacktoberfest","opensource","vue","vuejs"],"created_at":"2025-07-02T21:07:34.922Z","updated_at":"2025-07-02T21:07:35.731Z","avatar_url":"https://github.com/EmbarkStudios.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"🌐 opensource-website\n=================\n\n[![Contributor Covenant](https://img.shields.io/badge/contributor%20covenant-v2.0%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md)\n[![Embark](https://img.shields.io/badge/embark-open%20source-blueviolet.svg)](https://github.com/EmbarkStudios)\n\nHub for [Embark's open source efforts](https://www.embark.dev/).\n\n## About\n\nThis is a website using [Zola](https://www.getzola.org/) as static site generator.\n\nProject data is provided by a small JSON file, but in the future this should be grabbed from an API.\n\nAll non-project data and text is hardcoded for now, but in the future this should be provided by a CMS.\n\n## User Guide\n\n### Zola usage\n```sh\n# locally serve the site\nzola serve\n```\n\n```sh\n# build the static content\n# default output dir `public/`\nzola build\n```\n\n### Adding or Changing Projects\n\nThe site's data comes from `static/data/data.json`. You can add a new project by adding its info to this file.\n\n```json\n{\n  // Make sure the name is exactly the same as the GitHub repo name\n  \"name\": \"texture-synthesis\",\n  // The most important part\n  \"emoji\": \"🎨\",\n  // Add tags that you find relevant, as a comma-separated array\n  \"tags\": [\"rust\"],\n  // Short description to display on the card\n  \"description\": \"Example-based texture synthesis written in Rust\",\n  \n  // The following fields are only required if the project will be featured:\n  \"featured\": true,\n  // Longer description, displayed on the featured card\n  \"extendedDescription\": \"A light Rust API for Multiresolution Stochastic Texture Synthesis, a non-parametric example-based algorithm for image generation.\",\n  // URL to an image to display on the featured card\n  \"featureImage\": \"https://camo.githubusercontent.com/c279dea27db2c10f64cd27563d8d7cc86048c5c1/68747470733a2f2f692e696d6775722e636f6d2f43735a6f5350532e6a7067\",\n\n  // Lastly, if this property is included the project will be hidden \n  // from the website.\n  \"hidden\": \"This project is being soft-launched, so don't show it on the website\"\n}\n```\n\n### Adding or Changing Category Sections\n\nYou can insert a section showing all projects with a specified tag by putting the following into `templates/index.html`:\n\n```html\n\u003c!-- Replace \"rust\" with your tag --\u003e\n{{ macros::project_category(projects=data.projects, tag=\"rust\") }}\n```\n\n## Contributing\n\nWe welcome community contributions to this project.\n\nPlease read our [Contributor Guide](CONTRIBUTING.md) for more information on how to get started.\n\n## License\n\nLicensed under either of\n\n* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n\nat your option.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fembarkstudios%2Fopensource-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fembarkstudios%2Fopensource-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fembarkstudios%2Fopensource-website/lists"}