Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes 📝
.env
파일 생성을 처리하는setup_env_file
함수를 추가했습니다..env
가 없음에도 스크립트가 실행되는 오류를 수정했습니다.Description
처음에
.env
파일 설정의 귀찮음을 해결하고자 스크립트를 실행하면 알아서 파일을 만들고 언어 선택까지 자동화하도록 구현해보았습니다.Language Selection
사용자가 선택할 수 있는 언어 목록을 번호로 입력받도록 설정했습니다(입력이 없는 경우 기본 언어는
python3
로 설정됩니다)선택한 언어는 사용자의 닉네임과 함께
.env
파일에 저장됩니다.User Experience
.env
파일이 없는 경우 설정 과정으로 안내하여 사용자 경험을 개선했습니다.Testing 🧪
.env
파일이 없는 상태에서 스크립트를 테스트하여 설정 과정을 확인했습니다..env
파일 생성을 검증했습니다..env
파일에서 환경 변수 로딩을 확인했습니다.리뷰해주시고 피드백 또는 제안사항을 주시면 감사하겠습니다. 🙇