-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
1,717 additions
and
1,125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
+++ | ||
title = "docs" | ||
template = "docs/page.html" | ||
sort_by = "weight" | ||
+++ | ||
|
||
Getting started | ||
- Installation | ||
- CLI usage | ||
- Directory structure | ||
- config.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
title = "Actions" | ||
sort_by = "title" | ||
weight = 2 | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
+++ | ||
title = "command" | ||
template = "docs/section.html" | ||
+++ | ||
|
||
# command | ||
|
||
Run the command on the remote machine | ||
|
||
### Parameters | ||
|
||
| Parameter | Description | | ||
| -------------- | ----------- | | ||
| **cmd** <br> String <br>Required: true | The command to run | | ||
| **args** <br> List of String <br>Required: false | The command arguments | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
+++ | ||
title = "copy" | ||
template = "docs/section.html" | ||
+++ | ||
|
||
# copy | ||
|
||
Copy the file to the remote machine | ||
|
||
### Parameters | ||
|
||
| Parameter | Description | | ||
| -------------- | ----------- | | ||
| **src** <br> String <br>Required: true | Local path of a file to be copied | | ||
| **dest** <br> String <br>Required: true | The path where file should be copied to on remote server | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
+++ | ||
title = "file" | ||
template = "docs/section.html" | ||
+++ | ||
|
||
# file | ||
|
||
Manage files/folders and their properties | ||
|
||
### Parameters | ||
|
||
| Parameter | Description | | ||
| -------------- | ----------- | | ||
| **path** <br> String <br>Required: true | Path of the file or folder that's managed | | ||
| **state** <br> Enum of "file", "absent", "directory" <br>Required: false | Default to `file`<br><br>If `file`, a file will be managed.<br>If `directory`, a directory will be recursively created and all of its parent components if they are missing.<br>If `absent`, directories will be recursively deleted and all its contents, and files or symlinks will be unlinked. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
+++ | ||
title = "git" | ||
template = "docs/section.html" | ||
+++ | ||
|
||
# git | ||
|
||
Manage Git repositories | ||
|
||
### Parameters | ||
|
||
| Parameter | Description | | ||
| -------------- | ----------- | | ||
| **repo** <br> String <br>Required: true | address of the git repository | | ||
| **dest** <br> String <br>Required: true | The path of where the repository should be checked out. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
+++ | ||
title = "package" | ||
template = "docs/section.html" | ||
+++ | ||
|
||
# package | ||
|
||
Install packages | ||
|
||
### Parameters | ||
|
||
| Parameter | Description | | ||
| -------------- | ----------- | | ||
| **name** <br> String or List of String <br>Required: true | the name of the packages to be installed | | ||
| **state** <br> Enum of "present", "absent", "latest" <br>Required: true | Whether to install or remove or update packages<br>`present` to install<br>`absent` to remove<br>`latest` to update | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
+++ | ||
title = "Getting Started" | ||
sort_by = "weight" | ||
weight = 1 | ||
+++ | ||
|
||
Getting started | ||
- Installation | ||
- CLI usage | ||
- Directory structure | ||
- config.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
+++ | ||
template = "docs/section.html" | ||
title = "overview" | ||
weight = 2 | ||
+++ | ||
|
||
### Installation | ||
|
||
Run below to install latest Tiron binary to ```/usr/local/bin``` | ||
|
||
```bash | ||
curl -sL https://tiron.run/install.sh | sh | ||
``` | ||
|
Oops, something went wrong.