We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
.env.local .env.development.local .env.test.local .env.production.local
만약에 나중에 다른 .env.foo 같은 파일을 만들게 되면 어떻게 될까요?
놓치치 않고 .gitignore 를 업데이트 할 수 있을까요?
혹시 git add --all 해서 커밋해버리면 어떡하죠?
git add --all
"만약에" 중요한 정보가 있는데 푸쉬해버리면요?
그냥
.env.*
로 안전하게 하는게 좋지 않을까요?
그리고 제가 못본것일 수도 있는데, .env.example 같이 어떤 환경변수들이 쓰일지 명시해놓은 예시가 없는 것 같아요.
.env.example
해당 파일을 만들고 커밋해주신 후, gitignore 을 다음과 같이 수정하는 게 좋을 것 같습니다~
.env.* !.env.example
일반적으로 .env.local, .env.test, .env.production 식으로 사용할텐데 .env.production.local 과 같은 파일은 무엇을 위한 것인지 잘 모르겠습니다.
.env.local
.env.test
.env.production
.env.production.local
The text was updated successfully, but these errors were encountered:
No branches or pull requests
만약에 나중에 다른 .env.foo 같은 파일을 만들게 되면 어떻게 될까요?
놓치치 않고 .gitignore 를 업데이트 할 수 있을까요?
혹시
git add --all
해서 커밋해버리면 어떡하죠?"만약에" 중요한 정보가 있는데 푸쉬해버리면요?
그냥
로 안전하게 하는게 좋지 않을까요?
그리고 제가 못본것일 수도 있는데,
.env.example
같이 어떤 환경변수들이 쓰일지 명시해놓은 예시가 없는 것 같아요.해당 파일을 만들고 커밋해주신 후, gitignore 을 다음과 같이 수정하는 게 좋을 것 같습니다~
일반적으로
.env.local
,.env.test
,.env.production
식으로 사용할텐데.env.production.local
과 같은 파일은 무엇을 위한 것인지 잘 모르겠습니다.The text was updated successfully, but these errors were encountered: