mirror of
https://github.com/seigler/dashdev-website
synced 2025-07-26 22:36:09 +00:00
update all content, backup old
This commit is contained in:
parent
4ece530710
commit
6d07d54042
23 changed files with 150 additions and 3 deletions
6
src/html.old/docs/index.md
Normal file
6
src/html.old/docs/index.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: docs
|
||||||
|
priority: 0.9
|
||||||
|
---
|
||||||
|
|
||||||
|
This section provides an overview of core code and concepts.
|
9
src/html/blog/Welcome.md
Normal file
9
src/html/blog/Welcome.md
Normal file
|
@ -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
|
7
src/html/blog/index.md
Normal file
7
src/html/blog/index.md
Normal file
|
@ -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.
|
8
src/html/boxes/Bare Box.md
Normal file
8
src/html/boxes/Bare Box.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Bare Box
|
||||||
|
priority: 0.79
|
||||||
|
---
|
||||||
|
|
||||||
|
# Bare Box
|
||||||
|
|
||||||
|
WIP
|
8
src/html/boxes/Chrome Extension Example.md
Normal file
8
src/html/boxes/Chrome Extension Example.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Chrome Extension Example
|
||||||
|
priority: 0.76
|
||||||
|
---
|
||||||
|
|
||||||
|
# Chrome Extension Example
|
||||||
|
|
||||||
|
WIP
|
8
src/html/boxes/Chrome Extension.md
Normal file
8
src/html/boxes/Chrome Extension.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Chrome Extension
|
||||||
|
priority: 0.78
|
||||||
|
---
|
||||||
|
|
||||||
|
# Chrome Extension
|
||||||
|
|
||||||
|
WIP
|
8
src/html/boxes/DashJS HTML-JS Example.md
Normal file
8
src/html/boxes/DashJS HTML-JS Example.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: DashJS HTML-JS Example
|
||||||
|
priority: 0.77
|
||||||
|
---
|
||||||
|
|
||||||
|
# DashJS HTML-JS Example
|
||||||
|
|
||||||
|
WIP
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: boxes
|
title: boxes
|
||||||
priority: 0.6
|
priority: 0.8
|
||||||
---
|
---
|
||||||
|
|
||||||
This section provides an overview of core code and concepts.
|
This section provides an overview of core code and concepts.
|
||||||
|
|
7
src/html/docs/blockman.md
Normal file
7
src/html/docs/blockman.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
title: blockman
|
||||||
|
priority: 0.7
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
WIP from the cloud on wheels
|
76
src/html/docs/dashbox.md
Normal file
76
src/html/docs/dashbox.md
Normal file
|
@ -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 <source-box>
|
||||||
|
|
||||||
|
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://<custom-github-repo>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
|
||||||
|
```
|
||||||
|
Usage: dashbox <command> [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 <source> Load custom Template-box from https://github.com/dashdev-box into current directory
|
||||||
|
```
|
8
src/html/tutorials/Dash Wallet Chrome Extension.md
Normal file
8
src/html/tutorials/Dash Wallet Chrome Extension.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Dash Wallet Chrome Extension
|
||||||
|
priority: 0.6
|
||||||
|
---
|
||||||
|
|
||||||
|
# Dash Wallet Chrome Extension
|
||||||
|
|
||||||
|
WIP
|
|
@ -1,6 +1,8 @@
|
||||||
---
|
---
|
||||||
title: tutorials
|
title: Tutorials
|
||||||
priority: 0.7
|
priority: 0.7
|
||||||
---
|
---
|
||||||
|
|
||||||
This section provides an overview of core code and concepts.
|
# Dash Wallet Chrome Extension
|
||||||
|
|
||||||
|
WIP
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue