Skip to content

Commit

Permalink
Replace old org name (dagu-org#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
yohamta committed Jul 16, 2024
1 parent 80fa276 commit 3a6bf29
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<img src="https://codecov.io/gh/dagu-dev/dagu/branch/main/graph/badge.svg?token=CODZQP61J2" />
</a>
<a href="https://github.com/dagu-dev/dagu/releases">
<img src="https://img.shields.io/github/release/yohamta/dagu.svg" />
<img src="https://img.shields.io/github/release/dagu-dev/dagu.svg" />
</a>
<a href="https://godoc.org/github.com/dagu-dev/dagu">
<img src="https://godoc.org/github.com/dagu-dev/dagu?status.svg" />
Expand Down Expand Up @@ -151,7 +151,7 @@ You can install Dagu quickly using Homebrew or by downloading the latest binary
### Via Bash script

```sh
curl -L https://raw.githubusercontent.com/yohamta/dagu/main/scripts/installer.sh | bash
curl -L https://raw.githubusercontent.com/dagu-dev/dagu/main/scripts/installer.sh | bash
```

### Via GitHub Releases Page
Expand Down
10 changes: 8 additions & 2 deletions docs/_templates/github_star_button.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<div class="github-star-button">
<iframe src="https://ghbtns.com/github-btn.html?user=yohamta&repo=dagu&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>
</div>
<iframe
src="https://ghbtns.com/github-btn.html?user=dagu-dev&repo=dagu&type=star&count=true&size=large"
frameborder="0"
scrolling="0"
width="160px"
height="30px"
></iframe>
</div>
10 changes: 8 additions & 2 deletions docs/source/_templates/github_star_button.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<div class="github-star-button">
<iframe src="https://ghbtns.com/github-btn.html?user=yohamta&repo=dagu&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>
</div>
<iframe
src="https://ghbtns.com/github-btn.html?user=dagu-dev&repo=dagu&type=star&count=true&size=large"
frameborder="0"
scrolling="0"
width="160px"
height="30px"
></iframe>
</div>
4 changes: 2 additions & 2 deletions docs/source/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Conditional Steps
- condition: "$1"
expected: bar
.. image:: https://raw.githubusercontent.com/yohamta/dagu/main/examples/images/conditional.png
.. image:: https://raw.githubusercontent.com/dagu-dev/dagu/main/examples/images/conditional.png


File Output
Expand Down Expand Up @@ -179,7 +179,7 @@ Expected Output:
Sending Email Notifications
---------------------------

.. image:: https://raw.githubusercontent.com/yohamta/dagu/main/examples/images/email.png
.. image:: https://raw.githubusercontent.com/dagu-dev/dagu/main/examples/images/email.png

.. code-block:: yaml
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Via Bash script

.. code-block:: bash
curl -L https://raw.githubusercontent.com/yohamta/dagu/main/scripts/installer.sh | bash
curl -L https://raw.githubusercontent.com/dagu-dev/dagu/main/scripts/installer.sh | bash
Via Docker
----------
Expand Down
12 changes: 6 additions & 6 deletions docs/source/web_interface.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Workflows

It shows all DAGs and the real-time status.

.. figure:: https://raw.githubusercontent.com/yohamta/dagu/main/assets/images/ui-dags.webp
.. figure:: https://raw.githubusercontent.com/dagu-dev/dagu/main/assets/images/ui-dags.webp
:alt: Workflows
:align: center

Expand All @@ -19,15 +19,15 @@ Workflow Details
-----------------
It shows the real-time status, logs, and DAG configurations. You can edit DAG configurations on a browser.

.. figure:: https://raw.githubusercontent.com/yohamta/dagu/main/assets/images/ui-details.webp
.. figure:: https://raw.githubusercontent.com/dagu-dev/dagu/main/assets/images/ui-details.webp
:alt: Workflow Details
:align: center

|
You can switch to the vertical graph with the button on the top right corner.

.. figure:: https://raw.githubusercontent.com/yohamta/dagu/main/assets/images/ui-details2.webp
.. figure:: https://raw.githubusercontent.com/dagu-dev/dagu/main/assets/images/ui-details2.webp
:alt: Workflow Details (TD)
:align: center

Expand All @@ -38,7 +38,7 @@ Search

It searches given text across all DAGs.

.. figure:: https://raw.githubusercontent.com/yohamta/dagu/main/assets/images/ui-search.webp
.. figure:: https://raw.githubusercontent.com/dagu-dev/dagu/main/assets/images/ui-search.webp
:alt: Search
:align: center

Expand All @@ -49,7 +49,7 @@ Execution History

It shows past execution results and logs.

.. figure:: https://raw.githubusercontent.com/yohamta/dagu/main/assets/images/ui-history.webp
.. figure:: https://raw.githubusercontent.com/dagu-dev/dagu/main/assets/images/ui-history.webp
:alt: Execution History
:align: center

Expand All @@ -60,7 +60,7 @@ Execution Log

It shows the detail log and standard output of each execution and step.

.. figure:: https://raw.githubusercontent.com/yohamta/dagu/main/assets/images/ui-logoutput.webp
.. figure:: https://raw.githubusercontent.com/dagu-dev/dagu/main/assets/images/ui-logoutput.webp
:alt: Execution Log
:align: center

Expand Down
2 changes: 1 addition & 1 deletion docs/source/yaml_format.rst
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ In the example below, it pulls and runs `Deno's docker image <https://hub.docker
Example Log output:

.. image:: https://raw.githubusercontent.com/yohamta/dagu/main/examples/images/docker.png
.. image:: https://raw.githubusercontent.com/dagu-dev/dagu/main/examples/images/docker.png

By default, Dagu will try to pull the Docker image. For images built locally this will fail. If you want to skip image pull, pass :code:`pull: false` in executor config.

Expand Down
2 changes: 1 addition & 1 deletion ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
The Dagu UI relies on a backend server that provides the necessary data for the UI to function properly. To start the backend server, navigate to the project root directory and execute the following command:

```bash
git clone git@github.com:yohamta/dagu.git
git clone git@github.com:dagu-dev/dagu.git
cd dagu
make server
```
Expand Down

0 comments on commit 3a6bf29

Please sign in to comment.