You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rc module allows the user to store the config for ipfs-deploy either in the current project, as env does, or in standard locations in ~ or /etc as per https://github.com/dominictarr/rc#standards
For things like account credentials, it'd be reasonable to store them in one place for all sites you use ipfs-deploy for, rather than in each project.
The text was updated successfully, but these errors were encountered:
Yargs would then keep parsing cli arguments and generating the help text.
Yargs also has a feature I find adds familiarity to js devs which is to allow options to be configured within package.json, reducing the amount of dotfiles: https://yargs.js.org/docs/#api-pkgconfkey-cwd
It seems like we can have both by passing the rc object to config() and reading package.json with pkgConf().
The
rc
module allows the user to store the config foripfs-deploy
either in the current project, asenv
does, or in standard locations in~
or/etc
as per https://github.com/dominictarr/rc#standardsFor things like account credentials, it'd be reasonable to store them in one place for all sites you use ipfs-deploy for, rather than in each project.
The text was updated successfully, but these errors were encountered: