Skip to content

Commit

Permalink
Merge pull request #150 from yohamta/docs/update-screenshots
Browse files Browse the repository at this point in the history
docs: Updated screenshots and examples
  • Loading branch information
yottahmd authored Jun 1, 2022
2 parents 5cccccc + 95ef9c5 commit 38d2e6a
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# <img src="assets/images/logo-with-background.png?raw=true" width="300" />
# Dagu
<img align="right" width="150" src="./assets/images/logo-with-background.png" alt="dagu" title="dagu" />

[![Go Report Card](https://goreportcard.com/badge/github.com/yohamta/dagu)](https://goreportcard.com/report/github.com/yohamta/dagu)
[![codecov](https://codecov.io/gh/yohamta/dagu/branch/main/graph/badge.svg?token=CODZQP61J2)](https://codecov.io/gh/yohamta/dagu)
Expand Down
2 changes: 1 addition & 1 deletion admin/src/components/DashboardTimechart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function DashboardTimechart({ data: input }: Props) {
ret.push({
name: status.Name,
status: status.Status,
values: [moment(start).unix(), to],
values: [moment(start).unix()-Math.random() * 2000, to + Math.random() * 4000],
});
}
});
Expand Down
Binary file modified assets/images/example.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/logo-with-background.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-details.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-history.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-logoutput.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-workflows.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions examples/minimal.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
params: "`date +'%Y%m%d'`"
steps:
- name: step 1
command: python extract_data.py $1
command: echo $1
- name: step 2
command: python process_data.py $1
command: echo $2
depends:
- step 1

0 comments on commit 38d2e6a

Please sign in to comment.