Skip to content

Commit

Permalink
Add a __main__.py to dagster/daemon (#8012)
Browse files Browse the repository at this point in the history
Summary:
This lets you run "python -m dagster.daemon run" and have it launch the daemon - right now the only way to do that is to make use of the click entry point

Test Plan: Run the command above locally
  • Loading branch information
gibsondan committed May 23, 2022
1 parent 60e8774 commit be20db5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python_modules/dagster/dagster/daemon/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .cli import main

main()

0 comments on commit be20db5

Please sign in to comment.