const question = `
How do you share
environment variables
with the team?
`;
prompt(question);
For further actions, you may consider blocking this person and/or reporting abuse
const question = `
How do you share
environment variables
with the team?
`;
prompt(question);
For further actions, you may consider blocking this person and/or reporting abuse
satyaprakash behera -
jnsahaj -
Tiago Barbosa -
Kirsten Poon -
Top comments (1)
Actually it depends on how senstive these information.
For basic informations and base structure of the .env file, we use
.env.example
in the project repository so each memeber can clone it and update their.env
files.Senstive information are usually updated only on the server so the less people know about it the more secure these information are.