-
Notifications
You must be signed in to change notification settings - Fork 551
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/plugin-system-improvements-versioning
- Loading branch information
Showing
72 changed files
with
1,057 additions
and
457 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
# CODEOWNERS: https://help.github.com/articles/about-codeowners/ | ||
|
||
# Primary repo maintainers | ||
* @ilgooz @jeronimoalbi @Pantani | ||
* @ilgooz @jeronimoalbi @Pantani @julienrbrt @Ehsan-saradar | ||
|
||
# Docs | ||
*.md @ilgooz |
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 |
---|---|---|
|
@@ -2,7 +2,6 @@ scripts/**/nodetime-* | |
dist/ | ||
node_modules | ||
.DS_Store | ||
apps/ | ||
.idea | ||
.vscode | ||
docs/.vuepress/dist | ||
|
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,17 @@ | ||
--- | ||
sidebar_position: 990 | ||
title: v0.28.0 | ||
description: For chains that were scaffolded with Ignite CLI versions lower than v0.28.0. changes are required to use Ignite CLI v0.28.0. | ||
--- | ||
|
||
## Upgrading legacy plugins configuration files | ||
|
||
Ignite `v0.28.0` changes the plugin system which is now called Ignite Apps. This version includes changes | ||
to the CLI command names and the plugin configuration file. | ||
|
||
The plugins configuration file is now called `igniteapps.yml` and the "plugins" section is now called "apps". | ||
|
||
The global plugins directory is now `$HOME/.ignite/apps` instead `$HOME/.ignite/plugins`. | ||
|
||
Updates can be automatically applied by running `ignite doctor` in your blockchain application directory. | ||
Running the command outside your blockchain application directory will only update the global plugins. |
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,42 @@ | ||
--- | ||
description: Using and Developing Ignite Apps | ||
--- | ||
|
||
# Using Ignite Apps | ||
|
||
Apps offer a way to extend the functionality of the Ignite CLI. There are two | ||
core concepts within apps: `Commands` and `Hooks`. `Commands` extend the CLI's | ||
functionality and `Hooks` extend existing CLI command functionality. | ||
|
||
Apps are registered in an Ignite scaffolded blockchain project through the | ||
`igniteapps.yml`, or globally through `$HOME/.ignite/apps/igniteapps.yml`. | ||
|
||
To use an app within your project execute the following command inside the | ||
project directory: | ||
|
||
```sh | ||
ignite app install github.com/project/cli-app | ||
``` | ||
|
||
The app will be available only when running `ignite` inside the project | ||
directory. | ||
|
||
To use an app globally on the other hand, execute the following command: | ||
|
||
```sh | ||
ignite app install -g github.com/project/cli-app | ||
``` | ||
|
||
The command will compile the app and make it immediately available to the | ||
`ignite` command lists. | ||
|
||
## Listing installed apps | ||
|
||
When in an ignite scaffolded blockchain you can use the command `ignite app | ||
list` to list all Ignite Apps and there statuses. | ||
|
||
## Updating apps | ||
|
||
When an app in a remote repository releases updates, running `ignite app | ||
update <path/to/app>` will update an specific app declared in your | ||
project's `config.yml`. |
Oops, something went wrong.