-
Notifications
You must be signed in to change notification settings - Fork 433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Generating .env.example file from a .env file #354
Comments
I'll work on this soon. |
I just made a function that does this, but I still have to incorporate it into the cli. Will do it tonight. |
API_SECRET_KEY=some-value |
Something cool about an Update: Deno removed that feature :( denoland/std#5450 |
Hi,
Sometimes we can not share .env file. However it would be useful if we could generate a
.env.example
from it which contains all the comments and keys name in it. For example, suppose.env
has the following content,# this is comment API_SECRET_KEY=some-value
Then generated
.env.example
file has the following content,# this is comment API_SECRET_KEY=
It would be useful if a
CLI
command is provided for it.Thanks
The text was updated successfully, but these errors were encountered: