Currently, this program always generates .env while archiving and deploying which is not what I expect.
I would manually specify AWS_PROFILE, AWS_ROLE_ARN, AWS_ENVIRONMENT, ... these variables through my deploy scripts and I have separate env files for different environment. Always generate a sample file .env doesn't fit my scenario.
Though I can put the file into .gitignore, seeing the unexpected file being generated under the project root folder still kinda annoys me. Is it possible not to generate the file?
Currently, this program always generates
.envwhile archiving and deploying which is not what I expect.I would manually specify
AWS_PROFILE,AWS_ROLE_ARN,AWS_ENVIRONMENT, ... these variables through my deploy scripts and I have separate env files for different environment. Always generate a sample file.envdoesn't fit my scenario.Though I can put the file into
.gitignore, seeing the unexpected file being generated under the project root folder still kinda annoys me. Is it possible not to generate the file?