{"id":28428316,"url":"https://github.com/twelveiterationmods/balm-mod","last_synced_at":"2025-07-04T15:31:56.489Z","repository":{"id":136600288,"uuid":"550077271","full_name":"TwelveIterationMods/balm-mod","owner":"TwelveIterationMods","description":"Template for new Minecraft mods based on Balm","archived":false,"fork":false,"pushed_at":"2025-04-05T13:03:40.000Z","size":262,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"1.21.5","last_synced_at":"2025-06-05T12:42:15.090Z","etag":null,"topics":["fabricmc-mod","forge-mod","minecraft-mod","neoforge-mod"],"latest_commit_sha":null,"homepage":"https://balm.twelveiterations.com/","language":"Java","has_issues":true,"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/TwelveIterationMods.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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},"funding":{"github":"BlayTheNinth","patreon":"BlayTheNinth","open_collective":null,"ko_fi":"BlayTheNinth","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2022-10-12T07:05:26.000Z","updated_at":"2025-04-03T03:01:32.000Z","dependencies_parsed_at":"2025-02-24T18:21:00.790Z","dependency_job_id":"9a4a8ed3-94cb-4f9d-92b7-07cd44e67d13","html_url":"https://github.com/TwelveIterationMods/balm-mod","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/TwelveIterationMods/balm-mod","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TwelveIterationMods%2Fbalm-mod","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TwelveIterationMods%2Fbalm-mod/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TwelveIterationMods%2Fbalm-mod/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TwelveIterationMods%2Fbalm-mod/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TwelveIterationMods","download_url":"https://codeload.github.com/TwelveIterationMods/balm-mod/tar.gz/refs/heads/1.21.5","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TwelveIterationMods%2Fbalm-mod/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263567807,"owners_count":23481581,"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":["fabricmc-mod","forge-mod","minecraft-mod","neoforge-mod"],"created_at":"2025-06-05T12:38:01.280Z","updated_at":"2025-07-04T15:31:56.478Z","avatar_url":"https://github.com/TwelveIterationMods.png","language":"Java","funding_links":["https://github.com/sponsors/BlayTheNinth","https://patreon.com/BlayTheNinth","https://ko-fi.com/BlayTheNinth"],"categories":[],"sub_categories":[],"readme":"# Balm Mod Template\n\nThis is a template project that can be used to setup a multi-loader Minecraft Mod development environment with Balm.\n\nThe gradle setup is heavily based on [Jared's MultiLoader Template](https://github.com/jaredlll08/MultiLoader-Template).\n\n## Getting Started\n\n- Click \"Use this template\" on GitHub to create a new repository based on this template.\n- Clone the repository to your local machine.\n- Open the project in IntelliJ IDEA.\n- Open `gradle.properties` and configure your mod's metadata.\n- Now that you've set a mod id, you should rename all instances of `yourmod` and `YourMod` to your mod id / name, both\n  in code and in file names.\n- The majority of code lies in the `common` folder, while the mod-loader specific folders are only needed for\n  implementing third party mod compatibility.\n- The template includes a basic example for most of Balm's features. Delete parts that you don't need before releasing\n  your mod.\n- Don't forget to replace your mod's logo in `common/src/main/resources/yourmod-icon.png`.\n\nIf you need to add dependencies, do so in `dependencies.gradle`. I recommend leaving the `build.gradle` files untouched\nto make updating to newer versions of the template easier.\n\n## Structure\n\n### gradle.properties\n\nConfigure the mod's metadata as well as any mod loader or dependency versions in this file.\n\nIdeally, you should never make changes to `build.gradle` directly.\n\n### CHANGELOG.md\n\nThis file is used as a changelog for uploads to Modrinth and CurseForge.\n\n### LICENSE\n\nYou should replace this file with a license of your choice.\n\nUnless you fully understand the implications of the license you choose, you should keep this as All Rights Reserved.\n\n### modpage.md\n\nThis is used for Modrinth's `modrinthSyncBody` gradle task, updating the Modrinth project page to match the Markdown\nfile.\n\n### repositories.gradle\n\nThis is where Maven repositories for fetching dependencies are configured.\nIt is good practice to filter each repository to only the groups you expect to download from them.\n\n## Contributing\n\nIf you're interested in contributing to the mod, you can check\nout [issues labelled as \"help wanted\"](https://github.com/TwelveIterationMods/balm-mod/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22).\n\nWhen it comes to new features, it's best to confer with me first to ensure we share the same vision. You can join us\non [Discord](https://discord.gg/VAfZ2Nau6j) if you'd like to talk.\n\nContributions must be done through pull requests. I will not be able to accept translations, code or other assets\nthrough any other channels.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwelveiterationmods%2Fbalm-mod","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftwelveiterationmods%2Fbalm-mod","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwelveiterationmods%2Fbalm-mod/lists"}