Skip to content

Commit 2c60d95

Browse files
committed
Issue #12: implement DataSourceWithLogsContextSupport interface
1 parent 5978dc6 commit 2c60d95

9 files changed

+337
-127
lines changed

Diff for: CONTRIBUTING.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,20 @@ You need:
1414

1515
### Building
1616

17+
### All the stack
18+
19+
```shell
20+
./build_and_start.sh
21+
```
22+
1723
#### Frontend
1824

1925
```bash
20-
$ yarn install
21-
$ yarn build
26+
$ npm install
27+
$ npm run build
2228
```
2329

24-
When developing the front, use `yarn dev`.
30+
When developing the front, use `npm run dev`.
2531

2632
#### Backend
2733

@@ -49,7 +55,6 @@ $ npm run test
4955
$ go test -v ./pkg/...
5056
```
5157

52-
5358
## Release
5459

5560
TODO

Diff for: build_and_start.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env bash
2+
3+
npm install
4+
npm run build
5+
mage -v
6+
docker-compose up --build --force-recreate

Diff for: docker-compose.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ services:
1212
volumes:
1313
- ./:/var/lib/grafana/plugins/grafana-quickwit-datasource
1414
- ./provisioning:/etc/grafana/provisioning
15-
# - ./grafana/storage:/var/lib/grafana
16-
# - ./grafana/grafana.ini:/etc/grafana/grafana.ini
15+
- gquickwit:/var/lib/grafana
1716
extra_hosts:
1817
- "host.docker.internal:host-gateway"
18+
19+
volumes:
20+
gquickwit:

0 commit comments

Comments
 (0)