DEV Community

hayk-saryan
hayk-saryan

Posted on

How do you share environment variables with the team?

const question = `
    How do you share 
    environment variables 
    with the team?
`;

prompt(question);
Enter fullscreen mode Exit fullscreen mode

Top comments (1)

Collapse
 
hassanzohdy profile image
Hasan Zohdy

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.