Skip to content

Commit dfc7260

Browse files
committed
Added Cube.js project
1 parent 425d0dc commit dfc7260

File tree

7 files changed

+12807
-0
lines changed

7 files changed

+12807
-0
lines changed

vue-echarts/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.env
2+
node_modules
3+
.cubestore
4+
upstream

vue-echarts/cube.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Cube.js configuration options: https://cube.dev/docs/config
2+
module.exports = {
3+
};

vue-echarts/docker-compose.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
version: '2.2'
3+
4+
services:
5+
cube:
6+
image: cubejs/cube:v0.29.21
7+
ports:
8+
# It's better to use random port binding for 4000/3000 ports
9+
# without it you will not able to start multiple projects inside docker
10+
- 4000:4000 # Cube.js API and Developer Playground
11+
- 3000:3000 # Dashboard app, if created
12+
env_file: .env
13+
volumes:
14+
- .:/cube/conf
15+
# We ignore Cube.js deps, because they are built-in inside the official Docker image
16+
- .empty:/cube/conf/node_modules/@cubejs-backend/

0 commit comments

Comments
 (0)