-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#2] import code from the provisioning plugin
Import the code from the self provisioning plugin at commit: 3493b2d648669d781acf91ce7ad0efc80035be66 Functioning: yarn buid yarn start yarn test yarn build-api-doc
- Loading branch information
Showing
21 changed files
with
12,711 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
env: | ||
browser: true | ||
es2021: true | ||
node: true | ||
es6: true | ||
extends: | ||
- eslint:recommended | ||
- plugin:@typescript-eslint/recommended | ||
- prettier | ||
parser: '@typescript-eslint/parser' | ||
parserOptions: | ||
ecmaVersion: 2020 | ||
sourceType: module | ||
plugins: | ||
- prettier | ||
- '@typescript-eslint' | ||
- 'unused-imports' | ||
rules: | ||
eqeqeq: error | ||
prettier/prettier: | ||
- error | ||
unused-imports/no-unused-imports-ts: 2 | ||
settings: | ||
react: | ||
version: detect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
arrowParens: always | ||
singleQuote: true | ||
trailingComma: all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,28 @@ | ||
# jolokia-api-server | ||
# Jolokia api-server | ||
|
||
The Jolokia api-server is an express js server that serves an OpenApi defined | ||
api as an overlay to jolokia servers, translating the jolokia answers to json | ||
when needed. | ||
|
||
Checkout the api.md file to know more about what operations are currently | ||
supported. | ||
|
||
## Dev setup | ||
|
||
``` | ||
yarn build | ||
yarn start | ||
``` | ||
|
||
## Documentation generation | ||
|
||
After updating the `openapi.yml` file, please make sure to generate the | ||
documentation: | ||
|
||
``` | ||
yarn run build-api-doc | ||
``` | ||
|
||
## Production build | ||
|
||
To be defined. |
Oops, something went wrong.