https://bigconsavage.streamlit.app/
| 김세희 | 김지원 | 이지윤 | 전세현 |
|---|---|---|---|
| 프롬프팅, UI | mcp툴 | 데이터분석 | mcp툴, 데이터분석 |
| sehee0207 | jiwonniddaaa | jiyunni | hanyangsehyeon |
# On macOS and Linux.
# git소스 복사하기
git clone https://github.com/thjeong/shcard_2025_bigcontest
cd shcard_2025_bigcontest
# venv 환경 설정 (사전 uv 설치 필요)
uv venv
source .venv/bin/activate
# 필요한 python library 설치
uv pip install -r requirements.txt
# streamlit 환경 변수 저장용 폴더 생성 + GOOGLE_API_KEY환경 변수 파일 생성
# (Google API KEY)는 생성 필요
mkdir .streamlit
echo 'GOOGLE_API_KEY="(Google API KEY)"' > .streamlit/secrets.toml
# 로컬에서 실행
uv run streamlit run streamlit_app.py:: On Windows
:: git 소스 복사하기
git clone https://github.com/thjeong/shcard_2025_bigcontest
cd shcard_2025_bigcontest
:: venv 환경 설정 (사전 uv 설치 필요)
uv venv
call .venv\Scripts\activate.bat
:: 필요한 python library 설치
uv pip install -r requirements.txt
# streamlit 환경 변수 저장용 폴더 생성 + GOOGLE_API_KEY환경 변수 파일 생성
# (Google API KEY)는 생성 필요
mkdir .streamlit
echo GOOGLE_API_KEY="(Google API KEY)" > .streamlit\secrets.toml
:: 로컬에서 실행
uv run streamlit run streamlit_app.py