-
Notifications
You must be signed in to change notification settings - Fork 8
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 #89 from kinode-dao/hf/change-uqbar-to-kinode
change `uqbar-dao` -> `kinode-dao`
- Loading branch information
Showing
13 changed files
with
24 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# In-Depth Guide: Chess App | ||
|
||
This guide will walk you through building a very simple chess app on Kinode OS. | ||
The final result will look like [this](https://github.com/uqbar-dao/kinode/tree/main/modules/chess): chess is in the basic runtime distribution so you can try it yourself. | ||
The final result will look like [this](https://github.com/kinode-dao/kinode/tree/main/modules/chess): chess is in the basic runtime distribution so you can try it yourself. | ||
|
||
To prepare for this tutorial, follow the environment setup guide [here](../my_first_app/chapter_1.md), i.e. [start a fake node](../my_first_app/chapter_1.md#booting-a-fake-kinode-node) and then, in another terminal, run: | ||
```bash | ||
|
@@ -157,7 +157,7 @@ lto = true | |
anyhow = "1.0" | ||
base64 = "0.13" | ||
bincode = "1.3.3" | ||
kinode_process_lib = { git = "ssh://[email protected]/uqbar-dao/process_lib.git", tag = "v0.5.4-alpha" } | ||
kinode_process_lib = { git = "ssh://[email protected]/kinode-dao/process_lib.git", tag = "v0.5.4-alpha" } | ||
pleco = "0.5" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
|
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 |
---|---|---|
|
@@ -28,7 +28,7 @@ Here's a clean template so you have a complete fresh start: | |
This guide will use the following `kinode_process_lib` version in `file_transfer/Cargo.toml`: | ||
|
||
``` | ||
kinode_process_lib = { git = "ssh://[email protected]/uqbar-dao/process_lib.git", tag = "v0.5.4-alpha" } | ||
kinode_process_lib = { git = "ssh://[email protected]/kinode-dao/process_lib.git", tag = "v0.5.4-alpha" } | ||
``` | ||
|
||
Replace the `file_transfer/src/lib.rs` with: | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ However, if you are just interested in starting development as fast as possible, | |
The recommended method for most users is to use a precompiled binary. | ||
If you want to make edits to the Kinode core software, see [Build From Source](#build-from-source). | ||
|
||
First, get the software itself by downloading a [precompiled release binary](https://github.com/uqbar-dao/kinode/releases). | ||
First, get the software itself by downloading a [precompiled release binary](https://github.com/kinode-dao/kinode/releases). | ||
Choose the correct binary for your particular computer architecture and OS. | ||
There is no need to download the `simulation-mode` binary — it is used behind the scenes. | ||
Extract the `.zip` file and the binary is inside. | ||
|
@@ -48,7 +48,7 @@ For more information, or debugging, see the [Rust lang install page](https://www | |
Clone and set up the repository: | ||
|
||
```bash | ||
git clone [email protected]:uqbar-dao/kinode.git | ||
git clone [email protected]:kinode-dao/kinode.git | ||
|
||
cd kinode | ||
mkdir .cargo | ||
|
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