Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Examples](#examples) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fcube-js%2Fcube.js.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fcube-js%2Fcube.js?ref=badge_shield)

__Cube.js is an open source modular framework to build analytical web applications__. It is primarily used to build internal business intelligence tools or to add customer-facing analytics to an existing application.
Expand Down
4 changes: 2 additions & 2 deletions packages/cubejs-api-gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js API Gateway

Expand All @@ -13,4 +13,4 @@ Provides idempotent long polling API which guarantees analytic query results del

### License

Cube.js CLI is [Apache 2.0 licensed](./LICENSE).
Cube.js CLI is [Apache 2.0 licensed](./LICENSE).
4 changes: 2 additions & 2 deletions packages/cubejs-athena-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Athena Database Driver

Expand All @@ -13,4 +13,4 @@ Pure Javascript and Serverless AWS Athena driver.

### License

Cube.js CLI is [Apache 2.0 licensed](./LICENSE).
Cube.js CLI is [Apache 2.0 licensed](./LICENSE).
2 changes: 1 addition & 1 deletion packages/cubejs-bigquery-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js BigQuery Database Driver

Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js CLI

Expand Down
12 changes: 10 additions & 2 deletions packages/cubejs-cli/src/command/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,23 @@ import path from 'path';
import cliProgress from 'cli-progress';
import { CommanderStatic } from 'commander';
import { DeployDirectory } from '../deploy';
import { logStage, displayError } from '../utils';
import { logStage, displayError, event } from '../utils';
import { Config } from '../config';

const deploy = async ({ directory, auth, uploadEnv }: any) => {
const deploy = async ({ directory, auth, uploadEnv, token }: any) => {
if (!(await fs.pathExists(path.join(process.cwd(), 'node_modules', '@cubejs-backend/server-core')))) {
await displayError(
'@cubejs-backend/server-core dependency not found. Please run deploy command from project root directory and ensure npm install has been run.'
);
}

if (token) {
const config = new Config();
await config.addAuthToken(token);
await event('Cube Cloud CLI Authenticate');
console.log('Token successfully added!');
}

const config = new Config();
await config.loadDeployAuth();
const bar = new cliProgress.SingleBar({
Expand Down Expand Up @@ -106,6 +113,7 @@ export function configureDeployCommand(program: CommanderStatic) {
.command('deploy')
.description('Deploy project to Cube Cloud')
.option('--upload-env', 'Upload .env file to CubeCloud')
.option('--token <token>', 'Add auth token to CubeCloud')
.action(
(options) => deploy({ directory: process.cwd(), ...options })
.catch(e => displayError(e.stack || e))
Expand Down
4 changes: 2 additions & 2 deletions packages/cubejs-clickhouse-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js ClickHouse Database Driver

Expand All @@ -22,4 +22,4 @@ $ yarn test

### License

Cube.js ClickHouse Database Driver is [Apache 2.0 licensed](./LICENSE).
Cube.js ClickHouse Database Driver is [Apache 2.0 licensed](./LICENSE).
4 changes: 2 additions & 2 deletions packages/cubejs-client-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Client Core

Expand All @@ -13,4 +13,4 @@ Cube.js Client core set of methods to access Cube.js API Gateway.

### License

Cube.js Client Core is [MIT licensed](./LICENSE).
Cube.js Client Core is [MIT licensed](./LICENSE).
4 changes: 2 additions & 2 deletions packages/cubejs-client-ngx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Angular Client

Expand All @@ -13,4 +13,4 @@ Cube.js Angular is an Angular Module for Angular 6+.

### License

Cube.js React is [MIT licensed](./LICENSE).
Cube.js React is [MIT licensed](./LICENSE).
2 changes: 1 addition & 1 deletion packages/cubejs-client-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-client%2Freact.svg)](https://badge.fury.io/js/%40cubejs-client%2Freact)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js React

Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-client-vue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-client%2Fvue.svg)](https://badge.fury.io/js/%40cubejs-client%2Fvue)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Vue

Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-client-ws-transport/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js WebSocket Transport

Expand Down
4 changes: 2 additions & 2 deletions packages/cubejs-cubestore-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js store Driver

Expand All @@ -13,4 +13,4 @@ MySQL protocol based cubestore driver.

### License

Cube.js store Driver is [Apache 2.0 licensed](./LICENSE).
Cube.js store Driver is [Apache 2.0 licensed](./LICENSE).
4 changes: 2 additions & 2 deletions packages/cubejs-dremio-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Dremio Driver

Expand All @@ -13,4 +13,4 @@ Pure Javascript Dremio driver.

### License

Cube.js Dremio Driver is [Apache 2.0 licensed](./LICENSE).
Cube.js Dremio Driver is [Apache 2.0 licensed](./LICENSE).
2 changes: 1 addition & 1 deletion packages/cubejs-druid-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Druid Database Driver

Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-elasticsearch-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Elasticsearch Database Driver

Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-hive-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Hive Database Driver

Expand Down
4 changes: 2 additions & 2 deletions packages/cubejs-jdbc-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js JDBC Database Driver

[Learn more](https://github.com/cube-js/cube.js#getting-started)

### License

Cube.js JDBC Database Driver is [Apache 2.0 licensed](./LICENSE).
Cube.js JDBC Database Driver is [Apache 2.0 licensed](./LICENSE).
2 changes: 1 addition & 1 deletion packages/cubejs-mongobi-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js MongoBI Driver

Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-mssql-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js MS SQL Database Driver

Expand Down
4 changes: 2 additions & 2 deletions packages/cubejs-mysql-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js MySQL Database Driver

Expand All @@ -13,4 +13,4 @@ Pure Javascript MySQL driver.

### License

Cube.js MySQL Database Driver is [Apache 2.0 licensed](./LICENSE).
Cube.js MySQL Database Driver is [Apache 2.0 licensed](./LICENSE).
4 changes: 2 additions & 2 deletions packages/cubejs-oracle-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Oracle Database Driver

Expand All @@ -13,4 +13,4 @@ Pure Javascript Oracle driver.

### License

Cube.js Oracle Database Driver is [Apache 2.0 licensed](./LICENSE).
Cube.js Oracle Database Driver is [Apache 2.0 licensed](./LICENSE).
4 changes: 2 additions & 2 deletions packages/cubejs-playground/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Playground

Expand All @@ -13,4 +13,4 @@ UI for Cube.js development server environment.

### License

Cube.js Client Core is [MIT licensed](./LICENSE).
Cube.js Client Core is [MIT licensed](./LICENSE).
4 changes: 2 additions & 2 deletions packages/cubejs-postgres-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Postgres Database Driver

Expand All @@ -13,4 +13,4 @@ Pure Javascript Postgres driver.

### License

Cube.js Postgres driver is [Apache 2.0 licensed](./LICENSE).
Cube.js Postgres driver is [Apache 2.0 licensed](./LICENSE).
2 changes: 1 addition & 1 deletion packages/cubejs-prestodb-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)

[![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
[![CircleCI](https://circleci.com/gh/cube-js/cube.js.svg?style=shield)](https://circleci.com/gh/cube-js/cube.js)
[![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)

# Cube.js Presto Database Driver

Expand Down
Loading