-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from algorandfoundation/refactor/nodekit
refactor: rename to nodekit
- Loading branch information
Showing
121 changed files
with
435 additions
and
435 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
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 |
---|---|---|
|
@@ -7,13 +7,13 @@ A guide on how to contribute to this project. | |
Clone the project | ||
|
||
```bash | ||
git clone [email protected]:algorandfoundation/algorun-tui.git | ||
git clone [email protected]:algorandfoundation/nodekit.git | ||
``` | ||
|
||
Change to the directory | ||
|
||
```bash | ||
cd algorun-tui | ||
cd nodekit | ||
``` | ||
|
||
Build the project | ||
|
@@ -29,7 +29,7 @@ Optionally, run a sandboxed participation node | |
docker compose up | ||
``` | ||
|
||
Create a configuration file for the participation node in the root directory of the project (.algorun.yaml) | ||
Create a configuration file for the participation node in the root directory of the project (.nodekit.yaml) | ||
|
||
```yaml | ||
algod-endpoint: http://localhost:8080 | ||
|
@@ -40,13 +40,13 @@ Launch the TUI | |
> [!NOTE] | ||
> If you skipped the docker container or config file, try running `./bin/algorun` standalone, | ||
> If you skipped the docker container or config file, try running `./bin/nodekit` standalone, | ||
> which will detect your algorand data directory from the `ALGORAND_DATA` environment variable that works for `goal`. | ||
> Otherwise, provide the `--algod-endpoint` and `--algod-token` arguments so that it can find your node. | ||
> Note that algorun requires the admin algod token. | ||
> Note that nodekit requires the admin algod token. | ||
|
||
```bash | ||
./bin/algorun | ||
./bin/nodekit | ||
``` | ||
|
||
# 📂 Folder Structure | ||
|
@@ -67,7 +67,7 @@ All submodules and endpoints **SHOULD** align with the command/ui namespaces. | |
Example Command: | ||
|
||
```bash | ||
algorun status | ||
nodekit status | ||
``` | ||
|
||
Example Structure | ||
|
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,6 +1,6 @@ | ||
build: | ||
CGO_ENABLED=0 go build -o bin/algorun . | ||
CGO_ENABLED=0 go build -o bin/nodekit . | ||
test: | ||
go test -coverprofile=coverage.out -coverpkg=./... -covermode=atomic ./... | ||
generate: | ||
oapi-codegen -config generate.yaml https://raw.githubusercontent.com/algorand/go-algorand/v3.26.0-stable/daemon/algod/api/algod.oas3.yml | ||
oapi-codegen -config generate.yaml https://raw.githubusercontent.com/algorand/go-algorand/v3.26.0-stable/daemon/algod/api/algod.oas3.yml |
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
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.