viewflow

(โ˜… 127)

Viewflow is an Airflow-based framework that allows data scientists to create data models without writing Airflow code.

  • .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

# Installation Guide

1. Get the code
git clone https://github.com/datacamp/viewflow

Downloads the entire project code from GitHub to your computer.

cd viewflow

Moves into the project folder you just downloaded.

2. Python

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
RUN pip install git+https://github.com/datacamp/viewflow.git

Installs the Python libraries listed in requirements.txt (or similar).

poetry install

Installs the libraries listed in pyproject.toml.

poetry run airflow db init # Airflow 2

Type this command into your terminal and run it.

poetry run airflow initdb # Airflow 1.10

Type this command into your terminal and run it.

poetry run pytest

Type this command into your terminal and run it.

โœ… If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

// repository documentation