{"id":22427255,"url":"https://github.com/talandar99/raylib_game_template","last_synced_at":"2026-03-09T18:21:49.290Z","repository":{"id":218689574,"uuid":"747087788","full_name":"Talandar99/raylib_game_template","owner":"Talandar99","description":"  This is template for running raylib games and building them for web using emscripten","archived":false,"fork":false,"pushed_at":"2024-11-29T21:09:02.000Z","size":10,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-29T21:29:57.383Z","etag":null,"topics":["c","emscripten","emsdk","example","game-development","raygui","raylib","raylib-c","template","wasm","web-assembly"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Talandar99.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-01-23T08:38:53.000Z","updated_at":"2024-11-29T21:09:05.000Z","dependencies_parsed_at":"2024-01-23T22:08:26.666Z","dependency_job_id":"fe7add25-9eef-4488-94be-7f888dc90f17","html_url":"https://github.com/Talandar99/raylib_game_template","commit_stats":null,"previous_names":["talandar99/raylib_c_web_game_template","talandar99/raylib_web_game_template"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Talandar99%2Fraylib_game_template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Talandar99%2Fraylib_game_template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Talandar99%2Fraylib_game_template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Talandar99%2Fraylib_game_template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Talandar99","download_url":"https://codeload.github.com/Talandar99/raylib_game_template/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228364059,"owners_count":17908319,"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":["c","emscripten","emsdk","example","game-development","raygui","raylib","raylib-c","template","wasm","web-assembly"],"created_at":"2024-12-05T20:11:18.461Z","updated_at":"2026-03-09T18:21:48.797Z","avatar_url":"https://github.com/Talandar99.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"* raylib_game_template\n  This is template for running raylib games and building them for web using emscripten or desktop\n\n** Configuration\n edit variables on top of Makefile before running command\n   #+begin_src bash\n    # pick platform \"WEB\" or \"DESKTOP\"\n    RAYLIB_SETUP_PLATFORM=\"DESKTOP\"  \n    \n    # set to true or false based on preferences\n    # RAYGUI raygui is immediate-mode-gui library.\n    RAYLIB_USE_RAYGUI=true     \n    # RPNG is library to load/save png images and manage png chunks.\n    RAYLIB_USE_RPNG=false      \n    # raudio is audio library based on miniaudio.\n    RAYLIB_USE_RAUDIO=false    \n    # rres is file-format to package resources\n    RAYLIB_USE_RRES=false      \n    # NBNET is library designed to implement client-server architecture\n    RAYLIB_USE_NBNET=false     \n   #+end_src\n \n** Scripts\n   #+begin_src bash\n    make help                     # Show this help message\n    make deps                     # Download necessary dependencies and run setup_raylib_platform\n    make setup_raylib_platform    # Setup raylib for the selected platform\n    make build                    # Build the project based on the selected platform\n    make web_run                  # Build and run web version with HTTP server\n    make desktop_run              # Build and run desktop version\n    make clean                    # Clean the build and dependencies\n   #+end_src\n** Getting dependencies\n   before building anything remember to get needed libraries\n   #+begin_src bash\n    make deps                     # Download necessary dependencies and run setup_raylib_platform\n   #+end_src\n\n** Dekstop build \n   - change RAYLIB_SETUP_PLATFORM to \"DESKTOP\" in config on top of Makefile\n   - setup for desktop\n   #+begin_src bash\n    make setup_raylib_platform    # Setup raylib for the selected platform\n   #+end_src\n   - create build\n   #+begin_src bash\n    make build                    # Build the project based on the selected platform\n   #+end_src\n   - or just run game\n   #+begin_src bash\n    make desktop_run              # Build and run desktop version\n   #+end_src\n** Web build \n   - change RAYLIB_SETUP_PLATFORM to \"WEB\" in config on top of Makefile\n   - setup for web\n   #+begin_src bash\n    make setup_raylib_platform    # Setup raylib for the selected platform\n   #+end_src\n   - create web build\n   #+begin_src bash\n    make build                    # Build the project based on the selected platform\n   #+end_src\n   - You can start web server with python\n   #+begin_src bash\n    make web_run                  # Build and run web version with HTTP server\n   #+end_src\n   - go to this address: http://0.0.0.0:8000/main.html\n** Dependancies\n   - gcc with all libraries (needed to build code)\n   - make (needed in build)\n   - git (needed to pull dependancies)\n   - bash (needed in order to run bash scripts)\n   - python3 (for running server)\n   - LINUX based operating system (untested on other)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalandar99%2Fraylib_game_template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalandar99%2Fraylib_game_template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalandar99%2Fraylib_game_template/lists"}