-
Couldn't load subscription status.
- Fork 4
Kubernetes #99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Kubernetes #99
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,6 +1,30 @@ | ||
| # Launchr documentation | ||
|
|
||
| 1. [Launchr](launchr.md) | ||
| 2. [Launchr configuration](config.md) | ||
| 1. [Built-in functionality](#built-in-functionality) | ||
| 2. [Actions](actions.md) | ||
| 3. [Actions Schema](actions.schema.md) | ||
| 3. [Actions Schema](actions.schema.md) | ||
| 4. [Global configuration](config.md) | ||
| 5. [Development](development) | ||
|
|
||
| ## Build plugin | ||
|
|
||
| There are the following build options: | ||
| 1. `-o, --output OUTPUT` - result file. If empty, application name is used. | ||
| 2. `-n, --name NAME` - application name. | ||
| 3. `-p, --plugin PLUGIN[@v1.1]` - use plugin in the built launchr. The flag may be specified multiple times. | ||
| ```shell | ||
| launchr build \ | ||
| -p github.com/launchrctl/launchr \ | ||
| -p github.com/launchrctl/launchr@v0.1.0 | ||
| ``` | ||
| 4. `-r, --replace OLD=NEW` - replace go dependency, see [go mod edit -replace](https://go.dev/ref/mod#go-mod-edit). The flag may be specified multiple times. | ||
|
|
||
| The directive may be used to replace a private repository with a local path or to set a specific version of a module. Example: | ||
| ```shell | ||
| launchr build --replace github.com/launchrctl/launchr=/path/to/local/dir | ||
| launchr build --replace github.com/launchrctl/launchr=github.com/launchrctl/launchr@v0.2.0 | ||
| ``` | ||
|
|
||
| 5. `-d, --debug` - include debug flags into the build to support go debugging like [Delve](https://github.com/go-delve/delve). | ||
| Without the flag, all debugging info is trimmed. | ||
| 6. `-h, --help` - output help message |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.