commit f28be8d3260a718120e8113c6ed16b38939d2b13 Author: Mark Spanbroek Date: Mon Dec 2 11:05:03 2024 +0100 project setup diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1963f8d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,5 @@ +[*] +indent_style = space +insert_final_newline = true +indent_size = 2 +trim_trailing_whitespace = true \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..becd7f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +* +!*/ +!*.* diff --git a/codexvalidator.nimble b/codexvalidator.nimble new file mode 100644 index 0000000..34dd9ea --- /dev/null +++ b/codexvalidator.nimble @@ -0,0 +1,6 @@ +version = "0.1.0" +author = "Codex Validator contributors" +description = "Validation network for Codex" +license = "MIT" + +requires "https://github.com/codex-storage/nim-mysticeti >= 0.1.0 & < 0.2.0"