This is a Dagster project made to accompany Dagster University coursework.
First, install your Dagster code location as a Python package by running the command below in your terminal. By using the --editable (-e) flag, pip will install your Python package in "editable mode" so that as you develop, local code changes will automatically apply.
pip install -e ".[dev]"Duplicate the .env.example file and rename it to .env.
Then, start the Dagster UI web server:
dagster devOpen http://localhost:3000 with your browser to see the project.
You can specify new Python dependencies in setup.py.
The easiest way to deploy your Dagster project is to use Dagster Cloud.
Check out the Dagster Cloud Documentation to learn more.