This commit is contained in:
Tyler Butler 2020-10-19 12:24:36 -07:00 коммит произвёл GitHub
Родитель caba68ad48
Коммит bf038a84dc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 46 добавлений и 2 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -26,3 +26,6 @@ artifacts
docs/**/*:Zone.Identifier
docs/static/playground/
# Images in this folder are autogenerated at docs build time
docs/content/docs/concepts/images/**/*.png

Просмотреть файл

@ -201,10 +201,12 @@ Send PRs to [this repo](https://github.com/mattetti/custom-api-documenter).
<!-- AUTO-GENERATED-CONTENT:START (SCRIPTS) -->
| Script | Description |
|--------|-------------|
| `prebuild` | `concurrently "npm:build:md-magic" "npm:build:api-documenter" "npm:build:images"` |
| `build` | Build the site; outputs to `public/` by default. |
| `build:api-documenter` | Convert API JSON into Markdown. |
| `build:api-documenter:default` | -- |
| `build:api-documenter:win32` | -- |
| `build:images` | `java -jar bin/ditaa.jar content/docs/concepts/images/architecture.ditaa -rovT` |
| `build:md-magic` | Updates generated content in Markdown files. |
| `clean` | Remove all generated files. |
| `download` | Download and extract the API JSON and Playground files locally. |
@ -213,6 +215,7 @@ Send PRs to [this repo](https://github.com/mattetti/custom-api-documenter).
| `hugo` | Run the local copy of Hugo. |
| `hugo:default` | --- |
| `hugo:win32` | --- |
| `install:ditaa` | `download ` |
| `install:hugo` | Install the version of Hugo used by the documentation. |
| `postinstall` | -- |
| `postinstall:default` | -- |

Просмотреть файл

@ -0,0 +1,35 @@
+-----Client----------------------------------------------------------------+
| |
| +--------Fluid Loader--------------------------------------------------+ |
| | | |
| | +------------------------+ +-------------------+ +----------------+ | |
| | | Document Service | | Code Loader | | Scopes cBLU | | |
| | | Factory | | cBLU | +----------------+ | |
| | | cBLU | | | | |
| | | | | | +----------------+ | |
| | | | | | | URL Resolver | | |
| | | | | | | cBLU | | |
| | +------------------------+ +-------------------+ +----------------+ | |
| | | |
| +----------------------------------------------------------------------+ |
| +------------+
| +---------Fluid Runtime (Container)------------------------------------+ | |
| | | | v
| | +--------------------------+ +----------------+ +----------------+ | | +---------------------+
| | | | | | | | | | | |
| | | | | | | | | | | Fluid Service |
| | | Fluid Object | | Fluid Object | | Fluid Object | | | | {s} |
| | | cBLU | | cBLU | | cBLU | | | +---------------------+
| | | | | | | | | |
| | +--------------------------+ +----------------+ +----------------+ | |
| | | |
| | +-----+ +-----+ +-----+ +-----+ +-----+ | |
| | | | | | | | | | | | | |
| | | DDS | | DDS | | DDS | | DDS | | DDS | | |
| | | cBLU| | cBLU| | cBLU| | cBLU| | cBLU| | |
| | | | | | | | | | | | | |
| | +-----+ +-----+ +-----+ +-----+ +-----+ | |
| | | |
| +----------------------------------------------------------------------+ |
| |
+---------------------------------------------------------------------------+

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 90 KiB

Просмотреть файл

@ -8,10 +8,12 @@
"license": "MIT",
"author": "Microsoft",
"scripts": {
"build": "npm run build:md-magic && npm run build:api-documenter && npm run hugo",
"prebuild": "npm run build:md-magic && concurrently \"npm:build:api-documenter\" \"npm:build:images\"",
"build": "npm run hugo",
"build:api-documenter": "run-script-os",
"build:api-documenter:default": "[ -e ../_api-extractor-temp/doc-models ] && api-documenter generate --config api-documenter.json --input-folder ../_api-extractor-temp/doc-models/ --output-folder content/apis/ ; exit 0",
"build:api-documenter:win32": "if exist ../_api-extractor-temp/doc-models api-documenter generate --config api-documenter.json --input-folder ../_api-extractor-temp/doc-models/ --output-folder content/apis/",
"build:images": "java -jar bin/ditaa.jar content/docs/concepts/images/architecture.ditaa -rov --background F2F2F2",
"build:md-magic": "md-magic --path \"**/*.md\" --ignore \"node_modules\"",
"clean": "rimraf public/** content/apis/** static/playground/**",
"download": "concurrently \"npm run download:api\" \"npm run download:playground\" && npm run build:api-documenter",
@ -20,7 +22,8 @@
"hugo": "run-script-os",
"hugo:default": "\"./bin/hugo\"",
"hugo:win32": "call \"bin/hugo.exe\"",
"postinstall": "run-script-os",
"postinstall": "run-script-os && npm run install:ditaa",
"install:ditaa": "download https://github.com/stathissideris/ditaa/releases/download/v0.11.0/ditaa-0.11.0-standalone.jar > bin/ditaa.jar",
"install:hugo": "hugo-installer --version 0.74.3 --destination bin --extended",
"postinstall:default": "[ ! -f bin/hugo ] && npm run install:hugo ; exit 0",
"postinstall:win32": "if not exist bin/hugo.exe npm run install:hugo",