SettingDust

Results 172 comments of SettingDust

There are 388K on Modrinth. Hmm

> and, until I get uploads working alongside CurseForge, manual updates will take a while. Make sense

> hi, I am porting this mod to 1.20. Can I add your translate in the new mod? go

Can your provide a spark profiling?

> This is a forge bug. Use new neoforge Is there new neoforge on 1.20.1?

I think you need to shadow a submodule/task that output the mapped jar and shadow/from zipTree by yourself

Projects may useful https://github.com/ModdingX/PackDev Manage the pack using their own format. Relatively simple https://github.com/badasintended/explosion Allow to include the dependencies from dir. So it working with modpack. Only support fabric

There is the environment variable. But I don't know how is Spring finding the placeholder. XD ![Image](https://github.com/user-attachments/assets/4cc394ff-ddfd-4545-b64f-3afd807bcf2b)

https://github.com/SettingDust/RSSHub/blob/master/docker-compose.local.example.yml 目前的解决方案是直接从本地构建镜像,新建一个文件夹并符号链接内容到 `lib/routes`,这样访问路径会类似 `/private/XxXxXx/XxXxXx`,现在的 production [需要有一个构建好的路由索引文件](https://github.com/DIYgod/RSSHub/blob/master/lib/registry.ts#L58)来提高速度 - 如若引入一个额外的的路由索引路径(现在只有 `lib/routes`,添加如`lib/routes-private`)来方便添加私有路由,构建路由的代码[需要变更](https://github.com/DIYgod/RSSHub/blob/master/scripts/workflow/build-routes.ts#L82),因为这里硬编码了路由路径,且依旧需要重新构建镜像来使用新的构建好的索引文件,并不理想 - 在 `registry.ts` 引入一个无论如何都使用 `directoryImport` 的文件夹,这个方案是我觉得最好的,不过都需要有人花时间写代码

那可以修改后[构建索引](https://github.com/DIYgod/RSSHub/blob/master/package.json#L24),[挂载路由索引](https://github.com/DIYgod/RSSHub/blob/master/scripts/workflow/build-routes.ts#L90-L94)到 docker 容器,