joeflow
joeflow copied to clipboard
The workflow automation framework for machines with heart
``` "D:\python_project\PyCharm 2021.1.1\bin\runnerw64.exe" D:\python_project\view_flow_project\venv\Scripts\python.exe D:/python_project/view_flow_project/manage.py runserver 8000 Watching for file changes with StatReloader Exception in thread django-main-thread: Traceback (most recent call last): File "C:\Users\Bogdan\AppData\Local\Programs\Python\Python36\lib\threading.py", line 916, in _bootstrap_inner self.run() File...
I would like to show instance diagrams rendered with TD (top down) and not default LR (left right) directions. In the current version I have to alter internal joeflow code....
### 1) Workflow & State For me the separation between a workflow and state is not quite obvious in the first place. Also, that a state is actually a new...
I am currently adding assignees to a Task object via a `post_save` signal by matching the `task.name` against a string. Is it possible to add an assignee from within a...
Could it be possible to add a "Demo" directory in the code to test quickly that library. That directory could contain : * The simple examples explain in the documentation...
https://github.com/codingjoe/joeflow/blob/8d58695eeee2502d731fb5dde2491dba63e28c09/joeflow/models.py#L177C29-L177C29 If I use joeflow in an app in my project, the method to get the url namespace returns a wrong resulst. it should be something like ``` return f"{cls._meta.app_label}:{cls.__name__.lower()}"...
Greetings! I am not 100% sure if this is intended behaviour, so I am creating an issue to clarify that. https://github.com/codingjoe/joeflow/blob/69bb14d7a91c567e2a5f211d9d5e489baebbcae0/joeflow/runner/dramatiq.py#L35-L53 Here, we are executing queries (because we are calling...