From a4ee66daba086d13371a3e417e2c818d915189a1 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Sat, 21 Dec 2024 23:43:56 -0500 Subject: [PATCH] refactor: Rename Files --- README.md | 32 ++++++++++++++++++++++++++++++++ Taskfile.yml | 12 ++++++++++++ devbox.json | 15 +++++++++++++++ go.mod | 3 +++ 4 files changed, 62 insertions(+) create mode 100644 README.md create mode 100644 Taskfile.yml create mode 100644 devbox.json create mode 100644 go.mod diff --git a/README.md b/README.md new file mode 100644 index 0000000..b6cff3e --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +# `onsonr/motr` + +[![GoDoc](https://godoc.org/github.com/onsonr/motr?status.svg)](https://godoc.org/github.com/onsonr/motr) +[![Go Report Card](https://goreportcard.com/badge/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 diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 0000000..51b2a82 --- /dev/null +++ b/Taskfile.yml @@ -0,0 +1,12 @@ +# https://taskfile.dev + +version: '3' + +vars: + GREETING: Hello, World! + +tasks: + default: + cmds: + - echo "{{.GREETING}}" + silent: true diff --git a/devbox.json b/devbox.json new file mode 100644 index 0000000..19bb7f5 --- /dev/null +++ b/devbox.json @@ -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" + ] + } + } + } + \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..ba49ad3 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/onsonr/motr + +go 1.23.4