diff --git a/src/html/article/draft.md b/src/html.old/article/draft.md similarity index 100% rename from src/html/article/draft.md rename to src/html.old/article/draft.md diff --git a/src/html/article/future.md b/src/html.old/article/future.md similarity index 100% rename from src/html/article/future.md rename to src/html.old/article/future.md diff --git a/src/html/article/gotchas.md b/src/html.old/article/gotchas.md similarity index 100% rename from src/html/article/gotchas.md rename to src/html.old/article/gotchas.md diff --git a/src/html/article/gulp.md b/src/html.old/article/gulp.md similarity index 100% rename from src/html/article/gulp.md rename to src/html.old/article/gulp.md diff --git a/src/html/article/index.md b/src/html.old/article/index.md similarity index 100% rename from src/html/article/index.md rename to src/html.old/article/index.md diff --git a/src/html/article/usage.md b/src/html.old/article/usage.md similarity index 100% rename from src/html/article/usage.md rename to src/html.old/article/usage.md diff --git a/src/html/docs/build.md b/src/html.old/docs/build.md similarity index 100% rename from src/html/docs/build.md rename to src/html.old/docs/build.md diff --git a/src/html.old/docs/index.md b/src/html.old/docs/index.md new file mode 100644 index 0000000..4dfe95f --- /dev/null +++ b/src/html.old/docs/index.md @@ -0,0 +1,6 @@ +--- +title: docs +priority: 0.9 +--- + +This section provides an overview of core code and concepts. diff --git a/src/html/docs/installation.md b/src/html.old/docs/installation.md similarity index 100% rename from src/html/docs/installation.md rename to src/html.old/docs/installation.md diff --git a/src/html/docs/page-definitions.md b/src/html.old/docs/page-definitions.md similarity index 100% rename from src/html/docs/page-definitions.md rename to src/html.old/docs/page-definitions.md diff --git a/src/html/docs/plugins.md b/src/html.old/docs/plugins.md similarity index 100% rename from src/html/docs/plugins.md rename to src/html.old/docs/plugins.md diff --git a/src/html/docs/site-files.md b/src/html.old/docs/site-files.md similarity index 100% rename from src/html/docs/site-files.md rename to src/html.old/docs/site-files.md diff --git a/src/html/blog/Welcome.md b/src/html/blog/Welcome.md new file mode 100644 index 0000000..ef536b3 --- /dev/null +++ b/src/html/blog/Welcome.md @@ -0,0 +1,9 @@ +--- +title: Welcome +description: A set of articles published on this site. +priority: 0.59 +--- + +## Hello World + +Welcome to Dash Data-Contracts \ No newline at end of file diff --git a/src/html/blog/index.md b/src/html/blog/index.md new file mode 100644 index 0000000..a3e09fc --- /dev/null +++ b/src/html/blog/index.md @@ -0,0 +1,7 @@ +--- +title: Blog +description: A set of articles published on this site. +priority: 0.6 +--- + +A selection of articles is available in this section. diff --git a/src/html/boxes/Bare Box.md b/src/html/boxes/Bare Box.md new file mode 100644 index 0000000..b2bba71 --- /dev/null +++ b/src/html/boxes/Bare Box.md @@ -0,0 +1,8 @@ +--- +title: Bare Box +priority: 0.79 +--- + +# Bare Box + +WIP \ No newline at end of file diff --git a/src/html/boxes/Chrome Extension Example.md b/src/html/boxes/Chrome Extension Example.md new file mode 100644 index 0000000..0331d0b --- /dev/null +++ b/src/html/boxes/Chrome Extension Example.md @@ -0,0 +1,8 @@ +--- +title: Chrome Extension Example +priority: 0.76 +--- + +# Chrome Extension Example + +WIP diff --git a/src/html/boxes/Chrome Extension.md b/src/html/boxes/Chrome Extension.md new file mode 100644 index 0000000..204f25a --- /dev/null +++ b/src/html/boxes/Chrome Extension.md @@ -0,0 +1,8 @@ +--- +title: Chrome Extension +priority: 0.78 +--- + +# Chrome Extension + +WIP diff --git a/src/html/boxes/DashJS HTML-JS Example.md b/src/html/boxes/DashJS HTML-JS Example.md new file mode 100644 index 0000000..b13ffbd --- /dev/null +++ b/src/html/boxes/DashJS HTML-JS Example.md @@ -0,0 +1,8 @@ +--- +title: DashJS HTML-JS Example +priority: 0.77 +--- + +# DashJS HTML-JS Example + +WIP \ No newline at end of file diff --git a/src/html/boxes/index.md b/src/html/boxes/index.md index 310906a..5b9988e 100644 --- a/src/html/boxes/index.md +++ b/src/html/boxes/index.md @@ -1,6 +1,6 @@ --- title: boxes -priority: 0.6 +priority: 0.8 --- This section provides an overview of core code and concepts. diff --git a/src/html/docs/blockman.md b/src/html/docs/blockman.md new file mode 100644 index 0000000..6487265 --- /dev/null +++ b/src/html/docs/blockman.md @@ -0,0 +1,7 @@ +--- +title: blockman +priority: 0.7 +--- + + +WIP from the cloud on wheels \ No newline at end of file diff --git a/src/html/docs/dashbox.md b/src/html/docs/dashbox.md new file mode 100644 index 0000000..aab2b67 --- /dev/null +++ b/src/html/docs/dashbox.md @@ -0,0 +1,76 @@ +--- +title: dashbox +priority: 0.8 +--- + + +DashBox - Simple development framework for [Dash](https://www.dash.org) [Platform](https://www.dashdevs.org). Making developers life easier. + + +## Features + +- Load Templates, Examples and Tutorials for different use cases and knowledge levels +- Automated software testing with Mocha and Chai +- Configurable build pipeline and build processes +- Scriptable deployment and migrations framework + +## Required + +- Git + +## Install + +``` +$ npm install -g dashbox +``` + +## Usage - Load default box + +For a default template-set of contracts, tests and migrations run the following command inside an empty project directory: + +``` +$ dashbox init +``` +That's it! This loads the default minimal template (bare-box). + +## Usage - Load custom box + +For a custom and more advanced Template / Example / Tutorial run following command inside an empty project directory: + +``` +$ dashbox load + +eg. + +$ dashbox load dashjs-html-js-example +$ dashbox load chrome-extension +$ dashbox load chrome-extension-example +$ dashbox load chrome-extension-wallet-tutorial (WIP) +``` +View all available boxes on https://github.com/dashdev-box + +## Create - Your own box + +- Start with an empty directory, [bare-box](https://github.com/dashdev-box/bare-box) or [dashjs-html-js-example-box](https://github.com/dashdev-box/dashjs-html-js-example-box) + +- Add everything you need and use [dashbox-init.json](https://github.com/dashdev-box/dashjs-html-js-example-box/blob/master/dashbox-init.json) to add post-installation commands + +- Test your box: + +``` +dashbox load https:// +``` + +### Documentation + +``` +Usage: dashbox [parameter] + +Options: + -v, --version output version number + -h, --help output usage information + +Commands: + init|i Load default Template-box (bare-box) into current directory + load|l Load custom Template-box from https://github.com/dashdev-box into current directory +``` diff --git a/src/html/tutorials/Dash Wallet Chrome Extension.md b/src/html/tutorials/Dash Wallet Chrome Extension.md new file mode 100644 index 0000000..f6dc61e --- /dev/null +++ b/src/html/tutorials/Dash Wallet Chrome Extension.md @@ -0,0 +1,8 @@ +--- +title: Dash Wallet Chrome Extension +priority: 0.6 +--- + +# Dash Wallet Chrome Extension + +WIP diff --git a/src/html/tutorials/index.md b/src/html/tutorials/index.md index 6794f70..b343196 100644 --- a/src/html/tutorials/index.md +++ b/src/html/tutorials/index.md @@ -1,6 +1,8 @@ --- -title: tutorials +title: Tutorials priority: 0.7 --- -This section provides an overview of core code and concepts. +# Dash Wallet Chrome Extension + +WIP