EnvShare-CLI is a command-line tool that allows you to securely share and fetch environment variable files with your team. It is build on top of EnvShare.dev - Github. It uses encryption to protect sensitive data and provides a convenient way to share and access environment variables.
To install EnvShare-CLI, you can use npm. Make sure you have Node.js installed on your system.
npm install -g envshare-cli
or run directly with
npx envshare-cli@latest
To share an environment file, use the share
command.
npx envshare-cli@latest share
This command will prompt you to select an environment file (if multiple are available) and then upload it securely. You can specify optional TTL (Time to Live in seconds) and number of reads using the -t
and -r
options, respectively.
After sharing an environment file, EnvShare-CLI provides an option to copy the ID or the fetch command to your clipboard for easy sharing with others.
To fetch an environment file, use the fetch
command and provide the ID of the file you want to retrieve.
npx envshare-cli@latest fetch <ID>
You can also specify an output file using the -o
option:bash
npx envshare-cli@latest fetch <ID> -o <output-file>;
EnvShare-CLI uses encryption to protect your environment files during transmission.
Feel free to contribute to this project by creating issues or submitting pull requests on the GitHub repository.
This project is licensed under the MIT License. See the LICENSE file for details.
Name: Angelo Walczak
Email: angelo.walczak@gmail.com
GitHub: https://github.com/K1NXZ
For more information and updates, visit the GitHub repository.
Thank you for using envshare! We hope it simplifies the process of sharing and accessing environment files within your team.