# Secrets Management Streamlit 이용 시 비밀번호, 키 또는 저장소에 저장하지 않고 앱으로 전달해야 하는 모든 것을 안전하게 저장하는 간단한 방법을 제공한다. # 로컬 환경에서 secrets 설정하기 최상단 경로에 폴더 및 파일 생성: ~/.streamlit/secrets.toml ## .streamlit/secrets.toml API_KEY = '~~~' .gitignore 파일에 .streamlit/ 추가 및 git push ## .gitignore ... # Streamlit .streamlit/ git add .gitignore git commit -m "[commit log]" git push # 앱 배포 및 secrets 설정하기 http://share.streamlit..