You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have gone through the dagster university tutorial and thought I was ready to start my own very simple project which just has a single asset but for some reason it is not showing up in the UI. The project tree looks like:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have gone through the dagster university tutorial and thought I was ready to start my own very simple project which just has a single asset but for some reason it is not showing up in the UI. The project tree looks like:
.
├── Pipfile
├── Pipfile.lock
└── dagster-jobs
├── README.md
├── dagster_jobs
│ ├── init.py
│ ├── pycache
│ │ └── init.cpython-312.pyc
│ └── assets
│ ├── pycache
│ │ └── init.cpython-312.pyc
│ └── espn.py
├── dagster_jobs.egg-info
│ ├── PKG-INFO
│ ├── SOURCES.txt
│ ├── dependency_links.txt
│ ├── requires.txt
│ └── top_level.txt
├── dagster_jobs_tests
│ ├── init.py
│ └── test_assets.py
├── pyproject.toml
├── setup.cfg
├── setup.py
└── tmp2p9rg178
├── history
│ ├── runs
│ │ └── index.db
│ └── runs.db
└── schedules
└── schedules.db
12 directories, 20 files
The top level
__init__.py
looks like:And the asset inside
espn.py
looks like:Any help getting me started in the right direction would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions