-
Notifications
You must be signed in to change notification settings - Fork 395
Plugin system
Plugin structure can be found on Frontend development guidelines
Execute from cloudbeaver/webapp
yarn run bootstrap
Load all dependencies and init workspaces
yarn run build
Build all packages (plugins and the application) and the result will be placed in the packages/{package-name}/lib
folder
yarn run lint
Lint all code
yarn run lint-fix
Lint all code and fix
To build a single plugin execute
yarn lerna run build --stream --scope=@cloudbeaver/plugin-name
Product folder structure can be found on Frontend development guidelines
The only difference in the build command is:
"build": "core-cli-build --mode=production --config ../core-cli/configs/webpack.product.config.js",
it uses product config, also contains dev
command for starting development local build
"dev": "core-cli-build serve --mode=development --progress --config=../core-cli/configs/webpack.product.dev.config.js",
The application package simple defines the list of plugins that should be included in the build
Execute the command to build only the application without rebuilding the plugins
yarn lerna run build --stream --scope=@cloudbeaver/product-name
-
To run a development build that watches file changes and rebuilds, you can use the
dev
command:
yarn lerna run dev --stream --scope=@cloudbeaver/product-default -- -- --env server=http://backend.server:8095
It starts the dev server forproduct-default
. It also proxies backend requests tohttp://backend.server:8095
-
Navigate
localhost:8080
to open the application
You can keep static assets like images, favicon, etc in the public
folder in the plugin packages or app package.
Assets such as these will be copied to the application distributive. Assets with the same name will overwrite one another, but the Application public assets have higher priority over them all.
See the example in the core-administration
AdministrationLocaleService.ts
and locales
folder
- Application overview
- Demo Server
- Administration
- Server configuration
- Create Connection
- Connection Templates Management
- Access Management
-
Authentication methods
- Local Access Authentication
- Anonymous Access Configuration
- Reverse proxy header authentication
- LDAP
- Single Sign On
- SAML
- OpenID
- AWS OpenID
- AWS SAML
- AWS IAM
- AWS OpenId via Okta
- Snowflake SSO
- Okta OpenId
- Cognito OpenId
- JWT authentication
- Kerberos authentication
- NTLM
- Microsoft Entra ID authentication
- Google authentication
- User credentials storage
- Cloud Explorer
- Cloud storage
- Query Manager
- Drivers Management
- Supported databases
- Accessibility
- Keyboard shortcuts
- Features
- Server configuration
- CloudBeaver and Nginx
- Domain manager
- Configuring HTTPS for Jetty server
- Product configuration parameters
- Command line parameters
- Local Preferences
- API
-
CloudBeaver Community
-
CloudBeaver AWS
-
CloudBeaver Enterprise
-
Deployment options
-
Development