Closed
Conversation
Member
|
Hi, thank you for your contribution. I think it makes more sense if you first add this module as a third-party module in CloudNet, as we already do with the CloudNet-REST module, since we currently do not have the capacity to maintain and further develop the module if necessary. Therefore, I would be very grateful if you could publish the module yourself and add it here https://github.com/CloudNetService/CloudNet/blob/nightly/modules.json with a PR. If you need any help with this, please let me know. |
Contributor
Author
|
This PR was closed and the module was moved to a dedicated repository. |
0utplay
pushed a commit
that referenced
this pull request
Dec 20, 2025
### Motivation As requested, the module was moved from the PR into a dedicated repository so it can be provided as a third-party module for CloudNet. Closes #1814 ### Modification Added a new entry to `modules.json` to register the module and provide its metadata. ### Result The module is now available for download through the CloudNet module system.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Some users expressed the need for a centralized and flexible way to replace placeholders across multiple configuration files. Until now, this often required duplicating sensitive or shared values (e.g. database credentials, service endpoints, secrets) across many different configs, making maintenance error-prone and inconvenient.
To solve this, I created the Replacer module, which allows defining placeholder replacement rules in a single configuration and applying them dynamically across multiple files. This eliminates the need to manually update the same values in many places and reduces the risk of configuration inconsistencies.
#1354
Modification
ALL,FIRST, etc.)%taskName%,%nodeId%,%serviceHost%)Result
Before:
Placeholder values and secrets had to be duplicated manually across many different configuration files, making updates tedious and risky.
After:
All placeholder replacements can now be managed from a single centralized configuration, automatically applied to all matching files and targets.
Impact: