-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
6 changed files
with
47 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
file | ||
save | ||
coverage | ||
x | ||
|
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 |
---|---|---|
|
@@ -8,3 +8,6 @@ title = "The Khedra Book" | |
[output.html] | ||
numbered = false | ||
default-theme = "rust" | ||
|
||
[preprocessor.mermaid] | ||
|
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,17 +1,16 @@ | ||
# About the Name | ||
|
||
The name **khedra** (pronounced *kay-drah*) is inspired by the Persian word <span style="font-size: 1.5em;"> خدمت </span> (*khedmat*), meaning "service." | ||
The name **khedra** (prononced *kɛd-ɾɑ*) is inspired by the Persian word <span style="font-size: 1.5em;"> خدمت </span> (*khedmat*), meaning "service." | ||
|
||
In ancient Persian culture (my childrens' grandfather is Persian), service was considered a noble pursuit, emphasizing dedication, reliability, and humility in action. Drawing from this tradition, the name **khedra** embodies the essence of a system designed to serve--efficiently, continuously, and with purpose. | ||
In ancient Persian culture, service was considered a noble pursuit, emphasizing dedication, reliability, and humility in action. Drawing from this tradition, the name **khedra** embodies the essence of a system designed to serve--efficiently, continuously, and with purpose. | ||
|
||
Simliar to its counterpart, [chifra](https://github.com/TrueBlocks/trueblocks-core) (derived from the Persian word for "cipher"), the name **khedra** connects to our roots while adapting to a modern context. The name symbolizes a long-running, dependable processes that tirelessly "serves" the needs of its users. | ||
Simliar to its counterpart, [chifra](https://chifra.trueblocks.io) (derived from the Persian word for "cipher"), the name **khedra** symbolizes a long-running, dependable processes that tirelessly "serves" the needs of its users. | ||
|
||
More technically, **khedra** is a collection of persistant go routines that: | ||
More technically, **khedra** is a collection of go routines that: | ||
|
||
- creates the Unchained Index, | ||
- publishes the index to IPFS and a manifest of the resultant hashes to a smart contract, | ||
- monitors customized lists of addresses automating caching, notifications, and other ETL processes, | ||
- provides a RESTful API exposing `chifra`'s many data access commands, | ||
- creates and publishes the Unchained Index, | ||
- monitors a user-provided customized list of addresses automating caching, notifications, and other ETL processes, | ||
- provides a RESTful API exposing [chifra's](https://chifra.trueblocks.io) many data access commands, | ||
- allows for starting, stopping, pausing, and resuming these individual services. | ||
|
||
By choosing the name **khedra**, we honor a legacy of service while committing to building tools that are as resilient, adaptive, and reliable as the meaning behind its name. |
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 @@ | ||
# Architecture | ||
|
||
```mermaid | ||
graph TD | ||
config.go --> service.go | ||
service.go --> logging.go | ||
service.go --> chain.go | ||
chain.go --> validate.go | ||
validate.go --> general.go | ||
general.go --> testing.go | ||
chain_test.go --> chain.go | ||
validate_test.go --> validate.go | ||
logging_test.go --> logging.go | ||
general_test.go --> general.go | ||
config_test.go --> config.go | ||
``` |