Show HN: Comfygure – A small CLI to manage application configurations
21–30 of 33 posts
Re: Show HN: Comfygure – A small CLI to manage application configurations
#22Re: Show HN: Comfygure – A small CLI to manage application configurations
#23At my work, we use an internal config store developed by another team for app config management, versioning and audit history. It’s a bit flaky so we’ve been looking to replace it but don’t want to spend the company’s money building it. We’ve been looking but have not really found anything OSS. We’re looking for: - store text/binary documents - full audit history of document versions - get/put like api to retrieve/re…
Hashicorp Vault hits most (all?) of these points
Re: Show HN: Comfygure – A small CLI to manage application configurations
#24Earlier quoted context omitted.
I think the argument isn't so much that "everyone needs to be able to push to production" as much as "more than one person should be able to push to production". Bus factor is an important variable.
That's like saying a company needs two CEOs because of bus factor. Somebody else can take over the role of being responsible for pushing to production any time.
Re: Show HN: Comfygure – A small CLI to manage application configurations
#25At my work, we use an internal config store developed by another team for app config management, versioning and audit history. It’s a bit flaky so we’ve been looking to replace it but don’t want to spend the company’s money building it. We’ve been looking but have not really found anything OSS. We’re looking for: - store text/binary documents - full audit history of document versions - get/put like api to retrieve/re…
Re: Show HN: Comfygure – A small CLI to manage application configurations
#26Hmm props to getting this out, but my way is has always been "bash is good enough" ja its not perfect a d feature rich but gets you 80% there and most linux based coders knows enough bash. I hate learning a new "language" just to deploy code or servers. Guess im just too old :)
We built this tool because we had a need (everything is explained in the blog post)
Re: Show HN: Comfygure – A small CLI to manage application configurations
#27We usually have a slew of different environments that are mostly the same except for one or two parameters. I would like to find a solution that has the ability to control common parameters in one place without having to code the inheritance into every language / setting where the config is accessed.
In general it seems like simply storing your config in JSON or YAML and putting it in git provides most of the features of many config solutions and the overhead of deploying something separate to handle it rarely justifies the marginal benefit from that.
Re: Show HN: Comfygure – A small CLI to manage application configurations
#28Does it have any features to handle inheritance / composition of configurations? We usually have a slew of different environments that are mostly the same except for one or two parameters. I would like to find a solution that has the ability to control common parameters in one place without having to code the inheritance into every language / setting where the config is accessed. In general it seems like simply stori…
Re: Show HN: Comfygure – A small CLI to manage application configurations
#29Does it have any features to handle inheritance / composition of configurations? We usually have a slew of different environments that are mostly the same except for one or two parameters. I would like to find a solution that has the ability to control common parameters in one place without having to code the inheritance into every language / setting where the config is accessed. In general it seems like simply stori…
I didn't want to jump in with this earlier since comfy is the main topic here but https://configrd.io will do the inheritance you are asking about. It's not cli but also has an API, handles secrets and deploys on prem.