{"id":16376583,"url":"https://github.com/killercup/puzzle-potential","last_synced_at":"2025-07-29T03:08:01.338Z","repository":{"id":66475163,"uuid":"527243369","full_name":"killercup/puzzle-potential","owner":"killercup","description":"Bevy Jam #2 contrubution","archived":false,"fork":false,"pushed_at":"2024-03-05T06:58:15.000Z","size":873,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-02T11:58:34.333Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/killercup.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null}},"created_at":"2022-08-21T15:15:26.000Z","updated_at":"2022-08-21T15:15:41.000Z","dependencies_parsed_at":"2024-03-05T08:06:46.495Z","dependency_job_id":null,"html_url":"https://github.com/killercup/puzzle-potential","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"NiklasEi/bevy_game_template","purl":"pkg:github/killercup/puzzle-potential","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killercup%2Fpuzzle-potential","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killercup%2Fpuzzle-potential/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killercup%2Fpuzzle-potential/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killercup%2Fpuzzle-potential/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/killercup","download_url":"https://codeload.github.com/killercup/puzzle-potential/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killercup%2Fpuzzle-potential/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267621597,"owners_count":24116900,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-10-11T03:25:12.015Z","updated_at":"2025-07-29T03:08:01.310Z","avatar_url":"https://github.com/killercup.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# A Bevy game template\n\nTemplate for a Game using the awesome [Bevy engine][bevy] featuring out of the box builds for Windows, Linux, macOS, and Web (Wasm).\n\n_Since Bevy is in heavy development, there regularly are unpublished new features or bug fixes. If you like living on the edge, you can use the branch `bevy_main` of this template to be close to the current state of Bevy's main branch_\n \n# What does this template give you?\n* small example [\"game\"](https://niklasei.github.io/bevy_game_template/) (*warning: biased; e.g., split into a lot of plugins and using `bevy_kira_audio` for sound*)\n* easy setup for running the web build using [trunk] (`trunk serve`) \n* run the native version with `cargo run`\n* workflow for GitHub actions creating releases for Windows, Linux, macOS, and Web (Wasm) ready for distribution\n    * push a tag in the form of `v[0-9]+.[0-9]+.[0-9]+*` (e.g. `v1.1.42`) to trigger the flow\n    * WARNING: if you work in a private repository, please be aware that macOS and Windows runners cost more build minutes. You might want to consider running the workflow less often or removing some builds from it. **For public repositories the builds are free!**\n\n# How to use this template?\n 1. Click \"Use this template\" on the repository's page\n 2. Look for `ToDo` to use your own game name everywhere\n 3. [Update the icons as described below](#updating-the-icons)\n 4. Start coding :tada:\n    * Start the native app: `cargo run`\n    * Start the web build: `trunk serve`\n       * requires [trunk]: `cargo install --locked trunk`\n       * requires `wasm32-unknown-unknown` target: `rustup target add wasm32-unknown-unknown`\n       * this will serve your app on `8080` and automatically rebuild + reload it after code changes\n\nYou should keep the `credits` directory up to date. The release workflow automatically includes the directory in every build.\n\n### Updating the icons\n 1. Replace `build/windows/icon.ico` (used for windows executable and as favicon for the web-builds)\n 2. Replace `build/macos/icon_1024x1024.png` with a `1024` times `1024` pixel png icon and run `create_icns.sh` (make sure to run the script inside the `macos` directory) - _Warning: sadly this seems to require a mac..._\n\n### Deploy web build to GitHub pages\n 1. Trigger the `deploy-github-page` workflow\n 2. Activate [GitHub pages](https://pages.github.com/) for your repository\n     1. Source from the `gh-pages` branch (created by the just executed action)\n 3. After a few minutes your game is live at `http://username.github.io/repository`\n\nTo deploy newer versions, just run the `deploy-github-page` workflow again.\n\n# Getting started with Bevy\n\nYou should check out the Bevy website for [links to resources][bevy-learn] and the [Bevy Cheat Book] for a bunch of helpful documentation and examples. I can also recommend the [official Bevy Discord server][bevy-discord] to keep up to date with the development and get feedback + help from other Bevy users.\n\n# Known issues\n\nAudio in web-builds can have issues in some browsers. This seems to be a general performance issue and not due to the audio itself (see [bevy_kira_audio/#9][firefox-sound-issue]).\n\n# License\n\nThis project is licensed under [CC0 1.0 Universal](LICENSE) except some content of `assets` and the Bevy icons in the `build` directory (see [Credits](credits/CREDITS.md)). Go crazy and feel free to show me whatever you build with this ([@nikl_me][nikl-twitter]).\n\n[bevy]: https://bevyengine.org/\n[bevy-learn]: https://bevyengine.org/learn/\n[bevy-discord]: https://discord.gg/bevy\n[nikl-twitter]: https://twitter.com/nikl_me\n[firefox-sound-issue]: https://github.com/NiklasEi/bevy_kira_audio/issues/9\n[Bevy Cheat Book]: https://bevy-cheatbook.github.io/introduction.html\n[`wasm-server-runner`]: https://github.com/jakobhellermann/wasm-server-runner\n[trunk]: https://trunkrs.dev/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkillercup%2Fpuzzle-potential","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkillercup%2Fpuzzle-potential","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkillercup%2Fpuzzle-potential/lists"}