-
Notifications
You must be signed in to change notification settings - Fork 18
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
73 changed files
with
1,003 additions
and
475 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
openapi: 3.0.0 | ||
|
||
info: | ||
version: 0.5.2 | ||
version: 0.6.0 | ||
title: Inertia Daemon API Reference | ||
description: | | ||
|
@@ -279,16 +279,30 @@ paths: | |
example: 500 | ||
responses: | ||
200: | ||
description: Log contents retrieved | ||
description: Success! | ||
content: | ||
text/plain: | ||
type: string | ||
example: | | ||
No deployment detected | ||
Setting up project... | ||
Cloning branch dev from [email protected]:example/example.git... | ||
application/json: | ||
schema: | ||
allOf: | ||
- $ref: '#/components/schemas/OKResponse' | ||
- type: object | ||
required: [ data ] | ||
properties: | ||
data: | ||
type: object | ||
required: [ token ] | ||
properties: | ||
token: | ||
type: array | ||
items: | ||
type: string | ||
description: Array of log entries | ||
example: | ||
- No deployment detected | ||
- Setting up project... | ||
- Cloning branch dev from [email protected]:example/example.git... | ||
4XX,5XX: | ||
$ref: '#/components/responses/Error' | ||
$ref: '#/components/responses/Error' | ||
|
||
# auth | ||
|
||
|
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 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 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 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 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 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 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 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 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 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 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 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,33 @@ | ||
## inertia ${remote_name} send | ||
|
||
Send a file to your Inertia deployment | ||
|
||
### Synopsis | ||
|
||
Sends a file, such as a configuration or .env file, to your Inertia deployment. | ||
|
||
``` | ||
inertia ${remote_name} send [filepath] [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-d, --dest string path relative from project root to send file to | ||
-h, --help help for send | ||
-p, --perm string permissions settings to create file with (default "0655") | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--config string specify relative path to Inertia project configuration (default "inertia.toml") | ||
--debug enable debug output from Inertia client | ||
-s, --short don't stream output from command | ||
--simple disable colour and emoji output | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [inertia ${remote_name}](inertia_${remote_name}.md) - Configure deployment to ${remote_name} | ||
|
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 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 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 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 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 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
Oops, something went wrong.