Env Template maker
A simple CLI tool to create .env.template from existing .env file!
Usage
To create the .env.template file, go to the directory containing your .env file and run;
npx env-templateYou can also install it globally like this:
npm i env-template -gAnd then run:
env-templateExample:
.env file:
database_url=https://someDatabaseUrl.comserver_url=https://someServerUrl.comcloudinary_key=s@meR@nd#mKe7After running the command, a new .env.template file will be created in the same directiory:
database_url=#Your database_url hereserver_url=#Your server_url herecloudinary_key=#Your cloudinary_key here