We love to see our community members get involved! If you are planning to contribute to Dagster, you will first need to set up a local development environment.
If you have a Mac with an M1 chip, you will need to set up a separate environment to emulate an x86 architecture before following the remaining setup instructions. To find out if your Mac has an M1 chip, follow the instructions here.
If you don't have a Mac with an M1 chip, skip ahead to the next section - Dagster development setup.
To ensure that the correct installation of homebrew is automatically used in your rosetta terminal, add the following snippet to your ~/.bashrc, ~/.zshrc or profile manager of choice.
arch_name="$(uname -m)"if["${arch_name}"="x86_64"];thenecho"Running in x86 mode"eval$(/usr/local/bin/brew shellenv)elif["${arch_name}"="arm64"];thenecho"Running in Arm mode"eval$(/opt/homebrew/bin/brew shellenv)elseecho"Unexpected uname -m result ${arch_name}"fi# brew librariesexportLDFLAGS="-L $(brew --prefix openssl)/lib"exportCFLAGS="-I $(brew --prefix openssl)/include"
After sourcing this file, you can ensure that the correct version of homebrew is being used by confirming the output of which brew is /usr/local/bin/brew.
Ensure that you have node installed by running node -v, and that you have yarn installed. If you are on macOS, you can install yarn with Homebrew:
brew installyarn
Clone the Dagster repository to the destination of your choice:
git clone git@github.com:dagster-io/dagster.git
Run make dev_install at the root of the repository. This sets up a full Dagster developer environment with all modules and runs tests that do not require heavy external dependencies such as docker. This will take a few minutes. Note that certain sections of the makefile (sanity_check, which is part of rebuild_dagit) require POSIX compliant shells and will fail on CMD and powershell -- if developing on windows, using something like WSL or git-bash is recommended. Note also that if this command fails while installing python packages, the problem might be resolved by ensuring you are running an up-to-date version of pip (upgrade with pip install -U pip).
make dev_install
Run some tests manually to make sure things are working:
Black/Pylint: We use black to enforce a consistent code style, along with pylint. We test these in our CI/CD pipeline.
You can run make black from the repo root to automatically format your files.
Line Width: We use a line width of 100.
Import ordering: We use isort to standardize the order of imports.
You can run "make isort" from the repo root to automatically isort your files.
IDE: We recommend setting up your IDE to format with black on save and check pylint, but you can always run make black and make pylint in the root Dagster directory before submitting a pull request. If you're also using VS Code, you can see what we're using for our settings.jsonhere.
Docker: Some tests require Docker Desktop to be able to run them locally.
To run the Dagster documentation website locally, run the following commands:
cd docs
yarn --cwd next dev # Serves the docs website on http://localhost:3001
Troubleshooting tip: You may need to run yarn --cwd next (without the dev command) first to install dependencies. Also make sure that your Node version is >=12.13.0.
The API documentation is generated from ReStructured Text files (.rst), which extracts Python docstrings from the library files. The .rst files can be found in the docs/sections/api/apidocs directory.
If you change any .rst files, be sure to run the following command in the docs directory:
We encourage you to start with an issue labeled with the tag good first issue on the Github issue board, to get familiar with our codebase as a first-time contributor.
Then, you can work on the issue labeled as good second issue which is more like a medium task.
When you are ready for more of a challenge, you can tackle issues with the most 👍 reactions. We factor engagement into prioritization of the issues. You can also explore other labels and pick any issue based on your interest.
In the PR template, please describe the change, including the motivation/context, test coverage, and any other relevant information. Please note if the PR is a breaking change or if it is related to an open GitHub issue.
A Core reviewer will review your PR in around one business day and provide feedback on any changes it requires to be approved. Once approved and all the tests (including Buildkite!) pass, the reviewer will click the Squash and merge button in Github 🥳.
Your PR is now merged into Dagster! We’ll shout out your contribution in the weekly release notes.