├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── FEATURE_REQUEST.md ├── PULL_REQUEST_TEMPLATE.md ├── agents │ └── default.agent.md ├── copilot-instructions.md └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .golangci.yaml ├── .goreleaser.yaml ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── check.go ├── completion.go ├── describe.go ├── describe_projects.go ├── describe_tasks.go ├── edit.go ├── edit_project.go ├── edit_task.go ├── exec.go ├── gen.go ├── gen_docs.go ├── init.go ├── list.go ├── list_projects.go ├── list_tags.go ├── list_tasks.go ├── root.go ├── run.go ├── sync.go └── tui.go ├── core ├── config.man ├── dao │ ├── common.go │ ├── common_test.go │ ├── config.go │ ├── config_test.go │ ├── import.go │ ├── project.go │ ├── project_test.go │ ├── spec.go │ ├── spec_test.go │ ├── tag.go │ ├── tag_expr.go │ ├── tag_expr_test.go │ ├── target.go │ ├── target_test.go │ ├── task.go │ ├── task_test.go │ ├── theme.go │ ├── theme_block.go │ ├── theme_stream.go │ ├── theme_table.go │ ├── theme_tree.go │ ├── theme_tui.go │ └── utils_test.go ├── errors.go ├── exec │ ├── client.go │ ├── clone.go │ ├── exec.go │ ├── table.go │ ├── text.go │ ├── unix.go │ └── windows.go ├── flags.go ├── man.go ├── man_gen.go ├── mani.1 ├── prefixer.go ├── print │ ├── lib.go │ ├── print_block.go │ ├── print_table.go │ ├── print_tree.go │ └── table.go ├── sizedwaitgroup.go ├── tui │ ├── components │ │ ├── tui_button.go │ │ ├── tui_checkbox.go │ │ ├── tui_filter.go │ │ ├── tui_list.go │ │ ├── tui_modal.go │ │ ├── tui_output.go │ │ ├── tui_search.go │ │ ├── tui_table.go │ │ ├── tui_text.go │ │ ├── tui_textarea.go │ │ ├── tui_toggle_text.go │ │ └── tui_tree.go │ ├── misc │ │ ├── tui_event.go │ │ ├── tui_focus.go │ │ ├── tui_global.go │ │ ├── tui_theme.go │ │ ├── tui_utils.go │ │ └── tui_writer.go │ ├── pages.go │ ├── pages │ │ ├── tui_exec.go │ │ ├── tui_project.go │ │ ├── tui_run.go │ │ └── tui_task.go │ ├── tui.go │ ├── tui_input.go │ ├── views │ │ ├── tui_help.go │ │ ├── tui_project_view.go │ │ ├── tui_shortcut_info.go │ │ ├── tui_spec_view.go │ │ └── tui_task_view.go │ └── watcher.go └── utils.go ├── docs ├── changelog.md ├── commands.md ├── config.md ├── contributing.md ├── development.md ├── error-handling.md ├── examples.md ├── filtering-projects.md ├── installation.md ├── introduction.md ├── man-pages.md ├── output.md ├── project-background.md ├── roadmap.md ├── shell-completion.mdx ├── usage.md └── variables.md ├── examples ├── .gitignore ├── README.md └── mani.yaml ├── go.mod ├── go.sum ├── install.sh ├── main.go ├── res ├── demo.gif ├── demo.md ├── demo.vhs ├── graph-full.svg ├── graph.svg ├── logo.png ├── logo.svg └── mani.yaml ├── scripts └── release.sh └── test ├── README.md ├── fixtures ├── mani-advanced │ ├── .gitignore │ └── mani.yaml ├── mani-empty │ └── mani.yaml └── mani-no-tasks │ └── mani.yaml ├── images ├── alpine.exec.Dockerfile └── alpine.test.Dockerfile ├── integration ├── describe_test.go ├── exec_test.go ├── golden │ ├── describe │ │ ├── golden-0 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-1 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-2 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-3 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-4 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-5 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-6 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-7 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-8 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ └── golden-9 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ ├── exec │ │ ├── golden-0 │ │ │ └── stdout.golden │ │ ├── golden-1 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-2 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-3 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-4 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-5 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ └── golden-6 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ ├── dashgrid │ │ │ │ └── empty │ │ │ └── pinto │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ └── empty │ ├── init │ │ ├── golden-0 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-1 │ │ │ ├── .gitignore │ │ │ ├── dashgrid │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── nameless │ │ │ │ └── empty │ │ │ ├── nested │ │ │ │ └── template-generator │ │ │ │ │ └── empty │ │ │ ├── stdout.golden │ │ │ └── tap-report │ │ │ │ └── empty │ │ └── golden-2 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ ├── list │ │ ├── golden-0 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-1 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-10 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-11 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-12 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-13 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-14 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-15 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-16 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-17 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-2 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-3 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-4 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-5 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-6 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-7 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ ├── golden-8 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ │ └── golden-9 │ │ │ ├── mani.yaml │ │ │ └── stdout.golden │ ├── run │ │ ├── golden-0 │ │ │ └── stdout.golden │ │ ├── golden-1 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-10 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-11 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-2 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-3 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-4 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-5 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-6 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-7 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ ├── golden-8 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ │ ├── dashgrid │ │ │ │ │ └── empty │ │ │ │ └── pinto │ │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ │ └── empty │ │ └── golden-9 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ ├── dashgrid │ │ │ │ └── empty │ │ │ └── pinto │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ └── empty │ ├── sync │ │ ├── golden-0 │ │ │ └── stdout.golden │ │ └── golden-1 │ │ │ ├── .gitignore │ │ │ ├── frontend │ │ │ ├── dashgrid │ │ │ │ └── empty │ │ │ └── pinto │ │ │ │ └── empty │ │ │ ├── mani.yaml │ │ │ ├── stdout.golden │ │ │ └── template-generator │ │ │ └── empty │ └── version │ │ ├── golden-0 │ │ └── stdout.golden │ │ └── golden-1 │ │ ├── mani.yaml │ │ └── stdout.golden ├── init_test.go ├── list_test.go ├── main_test.go ├── run_test.go ├── sync_test.go └── version_test.go ├── playground ├── .gitignore ├── imports │ ├── many-projects.yaml │ ├── projects.yaml │ ├── specs.yaml │ ├── targets.yaml │ ├── tasks.yaml │ └── themes.yaml └── mani.yaml └── scripts ├── exec ├── git └── test /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/agents/default.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.github/agents/default.agent.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/README.md -------------------------------------------------------------------------------- /cmd/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/check.go -------------------------------------------------------------------------------- /cmd/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/completion.go -------------------------------------------------------------------------------- /cmd/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/describe.go -------------------------------------------------------------------------------- /cmd/describe_projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/describe_projects.go -------------------------------------------------------------------------------- /cmd/describe_tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/describe_tasks.go -------------------------------------------------------------------------------- /cmd/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/edit.go -------------------------------------------------------------------------------- /cmd/edit_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/edit_project.go -------------------------------------------------------------------------------- /cmd/edit_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/edit_task.go -------------------------------------------------------------------------------- /cmd/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/exec.go -------------------------------------------------------------------------------- /cmd/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/gen.go -------------------------------------------------------------------------------- /cmd/gen_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/gen_docs.go -------------------------------------------------------------------------------- /cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/init.go -------------------------------------------------------------------------------- /cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/list.go -------------------------------------------------------------------------------- /cmd/list_projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/list_projects.go -------------------------------------------------------------------------------- /cmd/list_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/list_tags.go -------------------------------------------------------------------------------- /cmd/list_tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/list_tasks.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/run.go -------------------------------------------------------------------------------- /cmd/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/sync.go -------------------------------------------------------------------------------- /cmd/tui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/cmd/tui.go -------------------------------------------------------------------------------- /core/config.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/config.man -------------------------------------------------------------------------------- /core/dao/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/common.go -------------------------------------------------------------------------------- /core/dao/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/common_test.go -------------------------------------------------------------------------------- /core/dao/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/config.go -------------------------------------------------------------------------------- /core/dao/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/config_test.go -------------------------------------------------------------------------------- /core/dao/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/import.go -------------------------------------------------------------------------------- /core/dao/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/project.go -------------------------------------------------------------------------------- /core/dao/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/project_test.go -------------------------------------------------------------------------------- /core/dao/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/spec.go -------------------------------------------------------------------------------- /core/dao/spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/spec_test.go -------------------------------------------------------------------------------- /core/dao/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/tag.go -------------------------------------------------------------------------------- /core/dao/tag_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/tag_expr.go -------------------------------------------------------------------------------- /core/dao/tag_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/tag_expr_test.go -------------------------------------------------------------------------------- /core/dao/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/target.go -------------------------------------------------------------------------------- /core/dao/target_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/target_test.go -------------------------------------------------------------------------------- /core/dao/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/task.go -------------------------------------------------------------------------------- /core/dao/task_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/task_test.go -------------------------------------------------------------------------------- /core/dao/theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/theme.go -------------------------------------------------------------------------------- /core/dao/theme_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/theme_block.go -------------------------------------------------------------------------------- /core/dao/theme_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/theme_stream.go -------------------------------------------------------------------------------- /core/dao/theme_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/theme_table.go -------------------------------------------------------------------------------- /core/dao/theme_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/theme_tree.go -------------------------------------------------------------------------------- /core/dao/theme_tui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/theme_tui.go -------------------------------------------------------------------------------- /core/dao/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/dao/utils_test.go -------------------------------------------------------------------------------- /core/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/errors.go -------------------------------------------------------------------------------- /core/exec/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/exec/client.go -------------------------------------------------------------------------------- /core/exec/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/exec/clone.go -------------------------------------------------------------------------------- /core/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/exec/exec.go -------------------------------------------------------------------------------- /core/exec/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/exec/table.go -------------------------------------------------------------------------------- /core/exec/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/exec/text.go -------------------------------------------------------------------------------- /core/exec/unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/exec/unix.go -------------------------------------------------------------------------------- /core/exec/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/exec/windows.go -------------------------------------------------------------------------------- /core/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/flags.go -------------------------------------------------------------------------------- /core/man.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/man.go -------------------------------------------------------------------------------- /core/man_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/man_gen.go -------------------------------------------------------------------------------- /core/mani.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/mani.1 -------------------------------------------------------------------------------- /core/prefixer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/prefixer.go -------------------------------------------------------------------------------- /core/print/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/print/lib.go -------------------------------------------------------------------------------- /core/print/print_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/print/print_block.go -------------------------------------------------------------------------------- /core/print/print_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/print/print_table.go -------------------------------------------------------------------------------- /core/print/print_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/print/print_tree.go -------------------------------------------------------------------------------- /core/print/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/print/table.go -------------------------------------------------------------------------------- /core/sizedwaitgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/sizedwaitgroup.go -------------------------------------------------------------------------------- /core/tui/components/tui_button.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_button.go -------------------------------------------------------------------------------- /core/tui/components/tui_checkbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_checkbox.go -------------------------------------------------------------------------------- /core/tui/components/tui_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_filter.go -------------------------------------------------------------------------------- /core/tui/components/tui_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_list.go -------------------------------------------------------------------------------- /core/tui/components/tui_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_modal.go -------------------------------------------------------------------------------- /core/tui/components/tui_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_output.go -------------------------------------------------------------------------------- /core/tui/components/tui_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_search.go -------------------------------------------------------------------------------- /core/tui/components/tui_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_table.go -------------------------------------------------------------------------------- /core/tui/components/tui_text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_text.go -------------------------------------------------------------------------------- /core/tui/components/tui_textarea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_textarea.go -------------------------------------------------------------------------------- /core/tui/components/tui_toggle_text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_toggle_text.go -------------------------------------------------------------------------------- /core/tui/components/tui_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/components/tui_tree.go -------------------------------------------------------------------------------- /core/tui/misc/tui_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/misc/tui_event.go -------------------------------------------------------------------------------- /core/tui/misc/tui_focus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/misc/tui_focus.go -------------------------------------------------------------------------------- /core/tui/misc/tui_global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/misc/tui_global.go -------------------------------------------------------------------------------- /core/tui/misc/tui_theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/misc/tui_theme.go -------------------------------------------------------------------------------- /core/tui/misc/tui_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/misc/tui_utils.go -------------------------------------------------------------------------------- /core/tui/misc/tui_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/misc/tui_writer.go -------------------------------------------------------------------------------- /core/tui/pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/pages.go -------------------------------------------------------------------------------- /core/tui/pages/tui_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/pages/tui_exec.go -------------------------------------------------------------------------------- /core/tui/pages/tui_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/pages/tui_project.go -------------------------------------------------------------------------------- /core/tui/pages/tui_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/pages/tui_run.go -------------------------------------------------------------------------------- /core/tui/pages/tui_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/pages/tui_task.go -------------------------------------------------------------------------------- /core/tui/tui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/tui.go -------------------------------------------------------------------------------- /core/tui/tui_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/tui_input.go -------------------------------------------------------------------------------- /core/tui/views/tui_help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/views/tui_help.go -------------------------------------------------------------------------------- /core/tui/views/tui_project_view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/views/tui_project_view.go -------------------------------------------------------------------------------- /core/tui/views/tui_shortcut_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/views/tui_shortcut_info.go -------------------------------------------------------------------------------- /core/tui/views/tui_spec_view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/views/tui_spec_view.go -------------------------------------------------------------------------------- /core/tui/views/tui_task_view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/views/tui_task_view.go -------------------------------------------------------------------------------- /core/tui/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/tui/watcher.go -------------------------------------------------------------------------------- /core/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/core/utils.go -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/error-handling.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/filtering-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/filtering-projects.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/man-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/man-pages.md -------------------------------------------------------------------------------- /docs/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/output.md -------------------------------------------------------------------------------- /docs/project-background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/project-background.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/shell-completion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/shell-completion.mdx -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/docs/variables.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/examples/mani.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/go.sum -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/install.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/main.go -------------------------------------------------------------------------------- /res/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/res/demo.gif -------------------------------------------------------------------------------- /res/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/res/demo.md -------------------------------------------------------------------------------- /res/demo.vhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/res/demo.vhs -------------------------------------------------------------------------------- /res/graph-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/res/graph-full.svg -------------------------------------------------------------------------------- /res/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/res/graph.svg -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/res/logo.png -------------------------------------------------------------------------------- /res/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/res/logo.svg -------------------------------------------------------------------------------- /res/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/res/mani.yaml -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/README.md -------------------------------------------------------------------------------- /test/fixtures/mani-advanced/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/fixtures/mani-advanced/.gitignore -------------------------------------------------------------------------------- /test/fixtures/mani-advanced/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/fixtures/mani-advanced/mani.yaml -------------------------------------------------------------------------------- /test/fixtures/mani-empty/mani.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/mani-no-tasks/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/fixtures/mani-no-tasks/mani.yaml -------------------------------------------------------------------------------- /test/images/alpine.exec.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/images/alpine.exec.Dockerfile -------------------------------------------------------------------------------- /test/images/alpine.test.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/images/alpine.test.Dockerfile -------------------------------------------------------------------------------- /test/integration/describe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/describe_test.go -------------------------------------------------------------------------------- /test/integration/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/exec_test.go -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-0/mani.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-0/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-0/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-1/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-1/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-1/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-1/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-2/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-2/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-2/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-2/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-3/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-3/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-3/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-3/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-4/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-4/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-4/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-4/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-5/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-5/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-5/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-5/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-6/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-6/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-6/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-6/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-7/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-7/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-7/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-7/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-8/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-8/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-8/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-8/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-9/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-9/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/describe/golden-9/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/describe/golden-9/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-0/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-0/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-1/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-1/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-1/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-1/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-1/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-1/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-1/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-1/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-2/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-2/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-2/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-2/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-2/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-2/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-2/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-2/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-3/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-3/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-3/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-3/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-3/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-3/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-3/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-3/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-4/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-4/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-4/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-4/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-4/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-4/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-4/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-4/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-5/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-5/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-5/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-5/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-5/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-5/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-5/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-5/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-6/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-6/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-6/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-6/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-6/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-6/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/exec/golden-6/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/exec/golden-6/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/init/golden-0/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/init/golden-0/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/init/golden-0/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/init/golden-0/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/init/golden-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/init/golden-1/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/init/golden-1/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/init/golden-1/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/init/golden-1/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/init/golden-1/nameless/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/init/golden-1/nested/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/init/golden-1/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/init/golden-1/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/init/golden-1/tap-report/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/init/golden-2/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/init/golden-2/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/init/golden-2/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/init/golden-2/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-0/mani.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/list/golden-0/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-0/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-1/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-1/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-1/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-1/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-10/mani.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/list/golden-10/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-10/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-11/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-11/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-11/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-11/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-12/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-12/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-12/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-12/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-13/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-13/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-13/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-13/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-14/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-14/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-14/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-14/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-15/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-15/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-15/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-15/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-16/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-16/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-16/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-16/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-17/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-17/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-17/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-17/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-2/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-2/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-2/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-2/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-3/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-3/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-3/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-3/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-4/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-4/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-4/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-4/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-5/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-5/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-5/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-5/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-6/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-6/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-6/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-6/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-7/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-7/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-7/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-7/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-8/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-8/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-8/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-8/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/list/golden-9/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-9/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/list/golden-9/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/list/golden-9/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-0/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-0/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-1/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-1/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-1/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-1/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-1/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-1/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-1/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-1/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-10/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-10/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-10/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-10/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-10/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-10/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-10/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-10/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-11/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-11/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-11/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-11/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-11/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-11/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-11/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-11/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-2/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-2/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-2/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-2/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-2/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-2/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-2/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-2/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-3/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-3/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-3/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-3/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-3/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-3/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-3/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-3/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-4/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-4/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-4/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-4/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-4/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-4/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-4/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-4/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-5/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-5/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-5/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-5/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-5/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-5/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-5/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-5/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-6/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-6/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-6/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-6/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-6/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-6/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-6/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-6/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-7/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-7/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-7/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-7/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-7/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-7/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-7/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-7/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-8/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-8/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-8/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-8/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-8/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-8/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-8/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-8/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-9/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/run/golden-9/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-9/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/run/golden-9/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-9/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/run/golden-9/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/run/golden-9/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/run/golden-9/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/sync/golden-0/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/sync/golden-0/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/sync/golden-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/sync/golden-1/.gitignore -------------------------------------------------------------------------------- /test/integration/golden/sync/golden-1/frontend/dashgrid/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/sync/golden-1/frontend/pinto/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/sync/golden-1/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/sync/golden-1/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/sync/golden-1/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/sync/golden-1/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/sync/golden-1/template-generator/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/golden/version/golden-0/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/version/golden-0/stdout.golden -------------------------------------------------------------------------------- /test/integration/golden/version/golden-1/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/version/golden-1/mani.yaml -------------------------------------------------------------------------------- /test/integration/golden/version/golden-1/stdout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/golden/version/golden-1/stdout.golden -------------------------------------------------------------------------------- /test/integration/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/init_test.go -------------------------------------------------------------------------------- /test/integration/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/list_test.go -------------------------------------------------------------------------------- /test/integration/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/main_test.go -------------------------------------------------------------------------------- /test/integration/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/run_test.go -------------------------------------------------------------------------------- /test/integration/sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/sync_test.go -------------------------------------------------------------------------------- /test/integration/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/integration/version_test.go -------------------------------------------------------------------------------- /test/playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/playground/.gitignore -------------------------------------------------------------------------------- /test/playground/imports/many-projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/playground/imports/many-projects.yaml -------------------------------------------------------------------------------- /test/playground/imports/projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/playground/imports/projects.yaml -------------------------------------------------------------------------------- /test/playground/imports/specs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/playground/imports/specs.yaml -------------------------------------------------------------------------------- /test/playground/imports/targets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/playground/imports/targets.yaml -------------------------------------------------------------------------------- /test/playground/imports/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/playground/imports/tasks.yaml -------------------------------------------------------------------------------- /test/playground/imports/themes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/playground/imports/themes.yaml -------------------------------------------------------------------------------- /test/playground/mani.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/playground/mani.yaml -------------------------------------------------------------------------------- /test/scripts/exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/scripts/exec -------------------------------------------------------------------------------- /test/scripts/git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/scripts/git -------------------------------------------------------------------------------- /test/scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alajmo/mani/HEAD/test/scripts/test --------------------------------------------------------------------------------