viewflow
Viewflow is an Airflow-based framework that allows data scientists to create data models without writing Airflow code.
파일 탐색기
최종 버전 다운로드 (.zip)- config.yml
- config.yml
- pyproject.toml
- requirements.txt
- config.yml
- course_enriched.sql
- top_3_user_xp.py
- user_xp.sql
- config.yml
- user_enriched.sql
- config.yml
- user_xp_duplicate.R
- config.yml
- top_3_user_xp_duplicate.Rmd
- views.py
- load_postgres.sql
- local-entrypoint-scheduler.sh
- local-entrypoint-webserver.sh
- .env
- viewflow-demo-1.png
- viewflow-demo-2.png
- test_postgres_adapter.py
- test_r_adapter.py
- test_rmd_adapter.py
- load_postgres.sql
- __init__.py
- test_parse_python.py
- test_parse_r.py
- test_parse_rmd.py
- test_parse_sql.py
- config.yml
- task_1.yml
- task_2.yml
- config.yml
- task_1.yml
- task_2.yml
- config.yml
- task_1.yml
- config.yml
- task_2.yml
- task_3.yml
- config.yml
- task_1.yml
- config.yml
- task_1.yml
- config.yml
- task_1.yml
- config.yml
- task_1.yml
- task_2.yml
- config.yml
- email_domains.py
- emails.sql
- config.yml
- user_emails.R
- config.yml
- user_emails.R
- task_1.R
- config.yml
- user_emails.Rmd
- config.yml
- user_emails.Rmd
- config.yml
- user_emails.Rmd
- task_1.Rmd
- config.yml
- task_1.sql
- __init__.py
- test_callbacks.py
- test_dag1_simple.py
- test_external_dependencies.py
- test_get_dependencies.py
- __init__.py
- postgres_adapter.py
- template.sql
- python_adapter.py
- r_adapter.py
- rmd_adapter.py
- post_execute_monkey_patch.py
- python_to_postgres_operator.py
- r_operator.py
- rmd_operator.py
- dependencies.py
- dependencies_r_patterns.py
- parse_python.py
- parse_r.py
- parse_rmd.py
- parse_sql.py
- parse_yml.py
- __init__.py
- create_dag.py
- task_callbacks.py
- .gitignore
- CONTRIBUTION.md
- docker-compose-airflow1.10.yml
- docker-compose-airflow2.yml
- docker-compose-test.yml
- Dockerfile-airflow1.10
- Dockerfile-airflow2
- LICENSE.md
- MAINTAINERS.md
- pyproject.toml
- README.md
- requirements.txt
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/datacamp/viewflow
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd viewflow
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Python
쉬움 추천사전 준비물
RUN pip install git+https://github.com/datacamp/viewflow.git
requirements.txt 등에 명시된 파이썬 라이브러리를 설치합니다.
poetry install
pyproject.toml에 명시된 라이브러리를 설치합니다.
poetry run airflow db init # Airflow 2
이 명령어를 터미널에 그대로 입력해 실행하세요.
poetry run airflow initdb # Airflow 1.10
이 명령어를 터미널에 그대로 입력해 실행하세요.
poetry run pytest
이 명령어를 터미널에 그대로 입력해 실행하세요.
에러 메시지 없이 실행되고 터미널에 안내 문구가 출력되면 정상입니다.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
