{"id":20380881,"url":"https://github.com/kamesuta/ignitetemplate","last_synced_at":"2026-04-24T22:37:30.834Z","repository":{"id":122347674,"uuid":"569655358","full_name":"Kamesuta/IgniteTemplate","owner":"Kamesuta","description":"Ignite を使用して 1.16.5 の Paperサーバー に Mixin を導入するためのテンプレートです。","archived":false,"fork":false,"pushed_at":"2022-11-23T10:19:06.000Z","size":72,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-14T03:06:06.366Z","etag":null,"topics":["ignite","minecraft","minecraft-plugin","mixin","papermc","spigot"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kamesuta.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}},"created_at":"2022-11-23T10:19:01.000Z","updated_at":"2024-09-07T10:12:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"6aed9efc-5e44-482a-9da5-5d5b6d4dfd2c","html_url":"https://github.com/Kamesuta/IgniteTemplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/Kamesuta/IgniteTemplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kamesuta%2FIgniteTemplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kamesuta%2FIgniteTemplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kamesuta%2FIgniteTemplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kamesuta%2FIgniteTemplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kamesuta","download_url":"https://codeload.github.com/Kamesuta/IgniteTemplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kamesuta%2FIgniteTemplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32243706,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"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":["ignite","minecraft","minecraft-plugin","mixin","papermc","spigot"],"created_at":"2024-11-15T02:09:31.008Z","updated_at":"2026-04-24T22:37:30.805Z","avatar_url":"https://github.com/Kamesuta.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IgniteTemplate\n\n1.16.5 の Paperサーバー に Mixin を導入するためのテンプレートです。\n\nこのテンプレートでは [Ignite](https://github.com/vectrix-space/ignite) を使用して、Paperサーバー に Mixin を適用することが可能な「Mod」を作成することができます。  \n(※ここでの「Mod」は Forge や Fabric の Mod とは関係がなく、Ignite の Mod を指します。)  \n\n## Ignite を使用する理由\n\n- Ignite は Paper のロード前に IgniteLauncher を挿入して Mixin を導入する仕組みであるため、`server.jar`や`patched_1.16.5.jar`を差し替える必要がなく導入が簡単です。\n- Mod 単位でパッチが作成できるため、プラグイン感覚で複数の Mod を同時に導入することが可能です。\n- Pterodactyl 上で問題なく Ignite を使用することができます。\n\n## 本番環境での Ignite の起動方法\n\n1. [IgniteLauncher](https://github.com/vectrix-space/ignite/releases) をダウンロードし、サーバーディレクトリに入れます。\n2. サーバーディレクトリに`mods`フォルダを作成し、このテンプレートで作成した Mod を入れます。\n3. 1.16.5 の paper をダウンロードし、`paper.jar`にリネームした上でサーバーディレクトリに入れます。\n4. 以下の引数を追加してサーバーを起動することで、Mod に書かれた Mixin が適用された Paperサーバー を起動することができます。\n```bat\njava -javaagent:./ignite-launcher.jar -Dignite.service=legacy_paper -Dignite.paper.minecraft=1.16.5 -jar ignite-launcher.jar\n```\n\n## 開発環境の起動方法\n\n1. `run`ディレクトリを作成し、以下ファイルを入れます。(リネームしてください)\n    - [ignite-launcher.jar](https://github.com/vectrix-space/ignite/releases)\n    - [paper.jar](https://papermc.io/legacy)\n2. IDEA の起動構成から `DevBuild` を選択し、起動します。\n    - 起動前に自動でビルドが行われ、`run/mods`に Mod がコピーされます。\n\n## サンプルについて\n\n[Ignite本家のサンプル](https://github.com/vectrix-space/ignite/tree/main/example)をそのまま使用しています。  \nこのテンプレートにはサンプルとして以下の Mixin が含まれています。  \n\n- [Mixin で`/hello`コマンドの追加](src/main/java/space/vectrix/example/mixin/core/MixinSimpleCommandMap.java)\n- [Mixin でサーバー起動時に`Hello World!`と表示する](src/main/java/space/vectrix/example/mixin/core/MixinCraftServer.java)\n- [Ignite でコンフィグ追加](src/main/java/space/vectrix/example/ExampleConfig.java)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamesuta%2Fignitetemplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkamesuta%2Fignitetemplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamesuta%2Fignitetemplate/lists"}