forked from questdb/questdb-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitpod.yml
33 lines (31 loc) · 877 Bytes
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
tasks:
- name: open_dashboard
command: |
gp ports await 3000 && sleep 5 && gp preview --external $(gp url 3000)/d/qdb-ilp-demo/device-data-questdb-demo?orgId=1&refresh=5s
- name: open_questdb_console
command: |
gp ports await 9000 && sleep 2 && gp preview --external $(gp url 9000)
- name: start_demo
command: |
DOCKER_COMPOSE_USER_ID=`id -u` docker-compose up
ports:
- name: QuestDB Web Console
port: 9000
visibility: private
onOpen: ignore
- name: QuestDB PostgreSQL Wire protocol
port: 8812
visibility: private
onOpen: ignore
- name: QuestDB ILP ingestion protocol
port: 9009
visibility: private
onOpen: ignore
- name: QuestDB metrics and healthcheck server
port: 9003
visibility: private
onOpen: ignore
- name: Grafana
port: 3000
visibility: private
onOpen: ignore