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.
📝 Summary
기존에 하드코딩된 디폴트 데이터셋 주소를
dotenv
로 관리하도록 방식이 변경되었습니다.✅ Checklist
[ ] 문서 업데이트가 포함되었습니다.📄 Description
.env
파일은 이미.gitignore
에 추가되어 있어 Git에 추적되지 않습니다.이를 활용해 디폴트 데이터셋 경로를
.env
에서 관리하도록 변경하여,데이터셋 버저닝이 업데이트되더라도 Streamlit 앱 코드는 추가 수정 없이 동작하도록 개선했습니다.
배포된 주소로 들어가시면
train_v2.0.1.csv
에 대한 정보가 기본적으로 출력되는걸 확인하실 수 있습니다.💡 Notice (Optional)
PR이 merge되면, 제가 공용서버의
.env
를 수정해서 다시 배포하겠습니다.Streamlit app에 대한 추가 기능 건의는 언제나 환영입니다.
🔗 Related Issue(s)
#27