-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposal: I would like to have support for generating the default config configuration using the command #383
Comments
Great idea! In fact, as early as a few months ago, I thought about generating a specific devops toolchain through the command line interactively, such as the We can implement this idea step by step. In order to avoid getting into complications at the beginning, we can first implement such a feature: Then I have a simple design for your reference:
var DefaultConfigContent = `tools:
- name: NAME
# name of the plugin
plugin: NAME
options:
foo: bar
`
/cc @devstream-io/devstream |
@summingyu Please wait for @IronCore864 's reply, start development after more discussions here. |
@summingyu great idea! @daniel-hutao I think Let's decide on this detail and get started :) |
When I was thinking about this command format( Of course, there is no such needs at present, so As for the verbose, perhaps it would be easier for the user to see the I'm not particularly prefer to a certain format above, just show my thoughts here. You decide it @IronCore864 @summingyu . |
@daniel-hutao @summingyu I think May I suggest I would like to use the verb What do you think? |
I think |
I vote |
Great, go for it. Then let's decide on |
I'll implement the /cc @summingyu |
/cc @devstream-io/devstream If you are interested in this feature, please leave your comments below. After I complete the development of |
I am interested |
I'd like to join |
@summingyu @imxw You can go for it after #392 merged.
As for the plugins assignment, you can discuss with each other and decide it. |
/assign @imxw @summingyu @daniel-hutao |
Description
I would like to have support for generating the default config configuration using the command
such as
dtm config githubaction
to generate the default configuration of githubactionDescribe the Proposal
The current way to get the plugin configuration file is to visit the docs directory of the github repository.
However, if a customer installs with brew or has only one binary, they may not know how the plugin configuration file is configured.
So there is a need to have a convenient way to show the default configuration of plugin.
Or go a step further and generate the toolschain configuration file with a command.
For example
dtm config toolschain p1-p2-p3
The text was updated successfully, but these errors were encountered: