Automate managing example .env files
Oftentimes, you'll want to be able to share and check in your .env
files with your team or to remember which environment variables are necessary for your project. copy-env
automatically copies your .env
file, removes the secret values, and saves it to an .env.sample
file.
Install the package globally to use the CLI:
npm i -g @nielse63/copy-env
Or install it in your project for scoped CLI usage, and to use the API:
npm i -D @nielse63/copy-env
Install the package and simply run copy-env
from the command line:
$ copy-env --help
Usage: copy-env [options]
Automate managing example .env files
Options:
--cwd <string> Current working directory (default: ".")
--src <string> Source file to read from (default: ".env")
--dest <string> File to write to (default: ".env.sample")
--ignore-regex <string> Regex string of what to omit from output (default: "^#")
--git-add Stage the output file after update (default: false)
-V, --version output the version number
-h, --help display help for command
See the view API on GitHub Pages.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
git checkout -b scratch/my-feature
)git commit -m 'added new feature'
)git push origin scratch/my-feature
)Distributed under the MIT License. See LICENSE
for more information.
Project Link: https://github.com/nielse63/copy-env
Generated using TypeDoc