fix(core): update

This commit is contained in:
Philipp Kunz 2019-08-12 11:27:55 +02:00
commit 62ae969ab1
11 changed files with 1871 additions and 0 deletions

22
.gitignore vendored Normal file
View File

@ -0,0 +1,22 @@
.nogit/
# artifacts
coverage/
public/
pages/
# installs
node_modules/
# caches
.yarn/
.cache/
.rpt2_cache
# builds
dist/
dist_web/
dist_serve/
dist_ts_web/
# custom

31
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,31 @@
# gitzone ci_default
image: hosttoday/ht-docker-dbase:npmci
services:
- docker:dind
cache:
paths:
- .npmci_cache/
key: "$CI_BUILD_STAGE"
stages:
- metadata
pages:
image: hosttoday/ht-docker-dbase:npmci
services:
- docker:18-dind
stage: metadata
script:
- npmci npm install
- npmci command npm run docs
tags:
- docker
- priv
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
allow_failure: true

29
index.md Normal file
View File

@ -0,0 +1,29 @@
# awpm-spec
the specification for the awesome worplace manifesto
## Availabililty
[![npm](https://awpm.gitlab.io/assets/repo-button-npm.svg)](https://www.npmjs.com/package/awpm-spec)
[![git](https://awpm.gitlab.io/assets/repo-button-git.svg)](https://GitLab.com/awpm/awpm-spec)
[![git](https://awpm.gitlab.io/assets/repo-button-mirror.svg)](https://github.com/awpm/awpm-spec)
[![docs](https://awpm.gitlab.io/assets/repo-button-docs.svg)](https://awpm.gitlab.io/awpm-spec/)
## Status for master
[![build status](https://GitLab.com/awpm/awpm-spec/badges/master/build.svg)](https://GitLab.com/awpm/awpm-spec/commits/master)
[![coverage report](https://GitLab.com/awpm/awpm-spec/badges/master/coverage.svg)](https://GitLab.com/awpm/awpm-spec/commits/master)
[![npm downloads per month](https://img.shields.io/npm/dm/awpm-spec.svg)](https://www.npmjs.com/package/awpm-spec)
[![Dependency Status](https://david-dm.org/awpm/awpm-spec.svg)](https://david-dm.org/awpm/awpm-spec)
[![bitHound Dependencies](https://www.bithound.io/github/awpm/awpm-spec/badges/dependencies.svg)](https://www.bithound.io/github/awpm/awpm-spec/master/dependencies/npm)
[![bitHound Code](https://www.bithound.io/github/awpm/awpm-spec/badges/code.svg)](https://www.bithound.io/github/awpm/awpm-spec)
[![TypeScript](https://img.shields.io/badge/TypeScript-2.x-blue.svg)](https://nodejs.org/dist/latest-v6.x/docs/api/)
[![node](https://img.shields.io/badge/node->=%206.x.x-blue.svg)](https://nodejs.org/dist/latest-v6.x/docs/api/)
[![JavaScript Style Guide](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/)
## Usage
Use TypeScript for best in class instellisense.
For further information read the linked docs at the top of this README.
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
[![repo-footer](https://awpm.gitlab.io/assets/repo-footer.svg)](https://awpm.xyz)

8
markdown/api.md Normal file
View File

@ -0,0 +1,8 @@
---
name: Tools
---
# AWMP - Tools
In order to simplify AWPM certification there are some check tools available
## checkspec
checkspec automatically checks some technical parts of the awpm-spec like brandfile-spec consistency across projects.

8
markdown/index.md Normal file
View File

@ -0,0 +1,8 @@
# Bellini.io Documentation
headless Open Source CMS
## What is this?
bellini.io enables easy maintance of content for large scale commercial websites.
## What does this documentation cover?
This documentation explains how to interface with bellini.io and how to use its APIs

4
markdown/sdks/nodejs.md Normal file
View File

@ -0,0 +1,4 @@
---
name: NodeJS SDK
---
bellini.io offers a TypeScript package which is the recommended way of interfacing with bellini.io

92
mkdocs.yml Normal file
View File

@ -0,0 +1,92 @@
# Project information
site_name: api.global - high availability API
site_description: high availability API made by lossless
site_author: Lossless GmbH
site_url: https://docs.api.global/
# directories
docs_dir: markdown
site_dir: public
# Repository
repo_name: apiglobal/docs
repo_url: https://gitlab.com/apiglobal/docs
edit_uri: "https://gitlab.com/apiglobal/docs/edit/master/markdown/"
# Copyright
copyright: 'Copyright © 2016 - 2019 Lossless GmbH'
# Configuration
theme:
name: material
# 404 page
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
feature:
tabs: true
palette:
primary: indigo
accent: indigo
font:
text: Roboto
code: Roboto Mono
favicon: assets/images/favicon.png
logo:
icon: "\uE80C"
# Customization
extra:
social:
- type: globe
link: https://bellini.io
- type: gitlab
link: https://gitlab.com/bellini
- type: twitter
link: https://twitter.com/bellini
# Extensions
markdown_extensions:
- meta
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Page tree
nav:
- Getting Started: index.md
- API:
- REST: api.md
- NodeJS: sdks/nodejs.md

1588
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

37
package.json Normal file
View File

@ -0,0 +1,37 @@
{
"name": "awpm.xyz",
"version": "1.0.26",
"description": "the specification for the awesome workplace manifesto",
"main": "dist/index.js",
"scripts": {
"test": "tsdoc",
"docs": "tsdoc",
"serve": "tsdoc --serve",
"build": "echo \"Not needed for now\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/awpm/awpm-spec.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/awpm/awpm-spec/issues"
},
"homepage": "https://gitlab.com/awpm/awpm-spec#README",
"devDependencies": {
"@gitzone/tsdoc": "^1.0.19"
},
"private": true,
"files": [
"ts/*",
"ts_web/*",
"dist/*",
"dist_web/*",
"dist_ts_web/*",
"assets/*",
"cli.js",
"npmextra.json",
"readme.md"
]
}

35
readme.md Normal file
View File

@ -0,0 +1,35 @@
# @bellini/docs
Open Source headless CMS
## Availabililty and Links
* [npmjs.org (npm package)](https://www.npmjs.com/package/undefined variable)
* [gitlab.com (source)](https://gitlab.com/bellini/docs)
* [github.com (source mirror)](https://github.com/bellini/docs)
* [docs (typedoc)](https://bellini.gitlab.io/docs/)
## Status for master
[![build status](https://gitlab.com/bellini/docs/badges/master/build.svg)](https://gitlab.com/bellini/docs/commits/master)
[![coverage report](https://gitlab.com/bellini/docs/badges/master/coverage.svg)](https://gitlab.com/bellini/docs/commits/master)
[![npm downloads per month](https://img.shields.io/npm/dm/undefined variable.svg)](https://www.npmjs.com/package/undefined variable)
[![Known Vulnerabilities](https://snyk.io/test/npm/undefined variable/badge.svg)](https://snyk.io/test/npm/undefined variable)
[![TypeScript](https://img.shields.io/badge/TypeScript->=%203.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
[![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
[![JavaScript Style Guide](https://img.shields.io/badge/code%20style-prettier-ff69b4.svg)](https://prettier.io/)
## Usage
Use TypeScript for best in class instellisense.
For further information read the linked docs at the top of this README.
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
> | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
[![repo-footer](https://awpm.gitlab.io/assets/repo-footer.svg)](https://awpm.xyz)
For further information read the linked docs at the top of this readme.
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
[![repo-footer](https://bellini.gitlab.io/assets/repo-footer.svg)](https://maintainedby.lossless.com)

17
tslint.json Normal file
View File

@ -0,0 +1,17 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}