-
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.
- Loading branch information
1 parent
34e9fd9
commit 8bc9ca6
Showing
4 changed files
with
14 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
# My First Kinode Application | ||
|
||
Welcome! | ||
In these tutorials, you'll setup your development environment and learn about the `kit` tools. | ||
You'll learn about templates and also walk through writing an application from the group up, backend and frontend. | ||
And finally, you'll learn how to deploy applications through the Kinode app store. | ||
|
||
For the purposes of this documentation, terminal commands are provided as-is for ease of copying EXCEPT when the output of the command is also shown. | ||
In that case, the command is prepended with a `$ ` to distinguish the command from the output. | ||
The `$ ` should not be copied into the terminal. | ||
The `$ ` should not be copied into the terminal. |
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,8 @@ | ||
# Processes | ||
|
||
Processes are independent pieces of Wasm code running on Kinode OS. | ||
They can either be persistent, in which case they have in-memory state, or temporary, completing some specific task and returning. | ||
They have access to long-term storage, like the filesystem or databases. | ||
They can communicate locally and over the Kinode network. | ||
They can access the internet via HTTP or WebSockets. | ||
And these abilities can be controlled using a capabilities security model. |