This is a Dagster project scaffolded with dagster project scaffold
.
This project pulls data from the NHL API, loads data into the DuckDB, and generates charts
Teams with the most wins - Top 10
Number of games with Total Goals in the game
Asset Diagram
- Check to make sure the /opt folder is ready
$ nohup dagster-webserver -h 0.0.0.0 -p 4444 -l /dagster &
$ nohup dagster-daemon run &
Will figure out more steps as I continue making this work.
Dagster generated README follows:
First, install your Dagster code location as a Python package. By using the --editable 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]"
Then, start the Dagster UI web server:
dagster dev
Open http://localhost:3000 with your browser to see the project.
You can start writing assets in skrimmage/assets.py
. The assets are automatically loaded into the Dagster code location as you define them.
You can specify new Python dependencies in setup.py
.
Tests are in the skrimmage_tests
directory and you can run tests using pytest
:
pytest skrimmage_tests
If you want to enable Dagster Schedules or Sensors for your jobs, the Dagster Daemon process must be running. This is done automatically when you run dagster dev
.
Once your Dagster Daemon is running, you can start turning on schedules and sensors for your jobs.
The easiest way to deploy your Dagster project is to use Dagster Cloud.
Check out the Dagster Cloud Documentation to learn more.