Skip to content

Commit

Permalink
Merge pull request #120 from dagster-io/add-dagster-from-git-make
Browse files Browse the repository at this point in the history
add install_from_dagster_clone makefile command
  • Loading branch information
cnolanminich authored Aug 22, 2024
2 parents e94876f + 7dbbede commit 61fa9e7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,9 @@ stateful_dev_prod: clean manifest

dependencies:
uv pip install -e ".[dev]"

# ensure that DAGSTER_GIT_REPO_DIR is set to the path of the dagster repo
# see https://www.notion.so/dagster/Local-Dev-Setup-e58aba352f704dcc88a8dc44cb1ce7fc for more details
# ensure your virtual environment is activated here
install_from_dagster_clone:
source .venv/bin/activate; uv pip install pip; cd ${DAGSTER_GIT_REPO_DIR} && python scripts/install_dev_python_modules.py; cd -;

0 comments on commit 61fa9e7

Please sign in to comment.