https://github.com/cmpadden/dagster-essentials
Dagster University: Dagster Essentials
https://github.com/cmpadden/dagster-essentials
Last synced: about 1 year ago
JSON representation
Dagster University: Dagster Essentials
- Host: GitHub
- URL: https://github.com/cmpadden/dagster-essentials
- Owner: cmpadden
- Created: 2023-11-15T21:20:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-26T03:59:20.000Z (over 2 years ago)
- Last Synced: 2025-02-05T23:25:11.384Z (over 1 year ago)
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dagster_university
This is a [Dagster](https://dagster.io/) project made to accompany Dagster University coursework.
## Getting started
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"](https://pip.pypa.io/en/latest/topics/local-project-installs/#editable-installs) so that as you develop, local code changes will automatically apply.
```bash
pip install -e ".[dev]"
```
Duplicate the `.env.example` file and rename it to `.env`.
Then, start the Dagster UI web server:
```bash
dagster dev
```
Open http://localhost:3000 with your browser to see the project.
## Development
### Adding new Python dependencies
You can specify new Python dependencies in `setup.py`.
## Deploy on Dagster Cloud
The easiest way to deploy your Dagster project is to use Dagster Cloud.
Check out the [Dagster Cloud Documentation](https://docs.dagster.cloud) to learn more.