mirror of
https://github.com/cf-sonr/motr.git
synced 2026-01-12 02:59:13 +00:00
refactor: Rename Files
This commit is contained in:
32
README.md
Normal file
32
README.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# `onsonr/motr`
|
||||
|
||||
[](https://godoc.org/github.com/onsonr/motr)
|
||||
[](https://goreportcard.com/report/github.com/onsonr/motr)
|
||||
|
||||
`onsonr/motr` is the implementation of the Decentralized Web Node for the Sonr Blockchain.
|
||||
|
||||
## Install
|
||||
```bash
|
||||
go get github.com/onsonr/motr
|
||||
```
|
||||
|
||||
## Usage
|
||||
```go
|
||||
package main
|
||||
import (
|
||||
"github.com/onsonr/motr"
|
||||
)
|
||||
|
||||
func main() {
|
||||
// Create a new decentralized web node
|
||||
node := motr.NewNode()
|
||||
|
||||
// Start the decentralized web node
|
||||
node.Start()
|
||||
}
|
||||
```
|
||||
|
||||
## License
|
||||
[MIT](LICENSE)
|
||||
|
||||
Copyright (c) 2024, diDAO
|
||||
12
Taskfile.yml
Normal file
12
Taskfile.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
# https://taskfile.dev
|
||||
|
||||
version: '3'
|
||||
|
||||
vars:
|
||||
GREETING: Hello, World!
|
||||
|
||||
tasks:
|
||||
default:
|
||||
cmds:
|
||||
- echo "{{.GREETING}}"
|
||||
silent: true
|
||||
15
devbox.json
Normal file
15
devbox.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.7/.schema/devbox.schema.json",
|
||||
"packages": [],
|
||||
"shell": {
|
||||
"init_hook": [
|
||||
"echo 'Welcome to devbox!' > /dev/null"
|
||||
],
|
||||
"scripts": {
|
||||
"test": [
|
||||
"echo \"Error: no test specified\" && exit 1"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user