Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start
Create a new post
1 | $ hexo new "My New Post" |
More info: Writing
Run server
1 | $ hexo server |
More info: Server
Generate static files
1 | $ hexo generate |
More info: Generating
Deploy to remote sites
1 | $ hexo deploy |
More info: Deployment
R 설치 방법
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start
Create a new post
1 | $ hexo new "My New Post" |
More info: Writing
Run server
1 | $ hexo server |
More info: Server
Generate static files
1 | $ hexo generate |
More info: Generating
Deploy to remote sites
1 | $ hexo deploy |
More info: Deployment
Streamlit 라이브러리를 활용한 배포 - BigQuery 사용
개요
- Streamlit 라이브러리와 BigQuery를 사용하여 배포를 진행한다.
- GCP 클라우드 프로젝트 설정 과정은 생략한다.
BigQuery API 사용설정
Project API
에서ENABLE APIS AND SERVICES
버튼을 클릭한다.
- 빅쿼리 API를 탐색한다.
- 키워드명 : BigQuery API
manage
버튼을 클릭한다.
- 인증키를 다운로드 받도록 한다. (
CREATE CREDENTIALS
클릭)
- 아래와 같이 지정 후, 스크롤을 내려서
NEXT
버튼을 클릭한다.
- 임의의
Service account ID
작성 후,CREATE AND CONTINUE
버튼을 클릭한다.
- 프로젝트 권한을 부여 후,
CONTINUE
버튼을 클릭한다.
Done
버튼을 클릭한다.
Service Accounts
-[우측] Manage keys
버튼 클릭
Create new key
버튼 클릭
- JSON 클릭
- json 파일을 다운로드 받는다.
Github Repo 생성
- 임의의
Github Repo
를 생성하고, 로컬로 다운로드 받는다.- 생성 방법은 생략한다.
secrets.toml 파일 설정
.streamlit
폴더를 생성하고,secrets.toml
파일을 생성하여 아래와 같이 작성한다.
1 | # .streamlit/secrets.toml |
- 이때 중요한 것은 위 파일은
.gitignore
에 등록한 후,Github Repo
에 등록을 해둬야 한다.- 보안은 중요하다.
secrets.toml
파일을 아래와 같이 수정한다.
Streamlit 대시보드 생성
- 라이브러리 설치 후, 간단하게 화면을 출력하도록 한다.
1 | $ virtualenv venv |
- 설치된 라이브러리를
requirements.txt
파일로 내보낸다.
1 | (venv) $ pip freeze > requirements.txt |
- 라이브러리 설치가 완료되면 아래와 같이 코드를 복사한 뒤,
[app.py](http://app.py)
를 설치한다. - 데이터는 빅쿼리 내부
sample datasets
를 사용했다.
1 | # streamlit_app.py |
- 이제 실행한후, 데이터가 정상적으로 나오는지 확인한다.
1 | (venv) $ streamlit run app.py |
배포
- 배포는 https://share.streamlit.io/signup 에서 진행한다.
- 빅쿼리에서 다운로드 받은 설정 파일을 지정하기 위해
Advanced Settings
를 클릭한다. Secrets
에 해당secrets.toml
코드를 복사하여 붙여넣는다.
Deploy
버튼을 클릭한다.