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
Hi,
Sometimes we can not share .env file. However it would be useful if we could generate a
.env.examplefrom it which contains all the comments and keys name in it. For example, suppose.envhas the following content,# this is comment API_SECRET_KEY=some-valueThen generated
.env.examplefile has the following content,# this is comment API_SECRET_KEY=It would be useful if a
CLIcommand is provided for it.Thanks