Skip to content
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

fix(.gitignore): generalize pattern for safety #3

Open
agatha197 opened this issue Nov 6, 2020 · 0 comments
Open

fix(.gitignore): generalize pattern for safety #3

agatha197 opened this issue Nov 6, 2020 · 0 comments

Comments

@agatha197
Copy link
Contributor

agatha197 commented Nov 6, 2020

 .env.local 
 .env.development.local 
 .env.test.local 
 .env.production.local 

만약에 나중에 다른 .env.foo 같은 파일을 만들게 되면 어떻게 될까요?

놓치치 않고 .gitignore 를 업데이트 할 수 있을까요?

혹시 git add --all 해서 커밋해버리면 어떡하죠?

"만약에" 중요한 정보가 있는데 푸쉬해버리면요?

그냥

.env.*

로 안전하게 하는게 좋지 않을까요?

그리고 제가 못본것일 수도 있는데, .env.example 같이 어떤 환경변수들이 쓰일지 명시해놓은 예시가 없는 것 같아요.

해당 파일을 만들고 커밋해주신 후, gitignore 을 다음과 같이 수정하는 게 좋을 것 같습니다~

.env.*
!.env.example

일반적으로 .env.local, .env.test, .env.production 식으로 사용할텐데 .env.production.local 과 같은 파일은 무엇을 위한 것인지 잘 모르겠습니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant