Skip to content

Commit

Permalink
Merge pull request #23 from quickwit-oss/feat_log_context
Browse files Browse the repository at this point in the history
Issue #12: implement DataSourceWithLogsContextSupport interface
  • Loading branch information
idrissneumann committed Nov 24, 2023
2 parents d4d0fc8 + 1d7e726 commit 271eda2
Show file tree
Hide file tree
Showing 13 changed files with 219 additions and 187 deletions.
13 changes: 9 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,20 @@ You need:

### Building

### All the stack

```shell
./build_and_start.sh
```

#### Frontend

```bash
$ yarn install
$ yarn build
$ npm install
$ npm run build
```

When developing the front, use `yarn dev`.
When developing the front, use `npm run dev`.

#### Backend

Expand Down Expand Up @@ -49,7 +55,6 @@ $ npm run test
$ go test -v ./pkg/...
```


## Release

TODO
6 changes: 6 additions & 0 deletions build_and_start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash

npm install
npm run build
mage -v
docker-compose up --build --force-recreate
6 changes: 4 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ services:
volumes:
- ./:/var/lib/grafana/plugins/grafana-quickwit-datasource
- ./provisioning:/etc/grafana/provisioning
# - ./grafana/storage:/var/lib/grafana
# - ./grafana/grafana.ini:/etc/grafana/grafana.ini
- gquickwit:/var/lib/grafana
extra_hosts:
- "host.docker.internal:host-gateway"

volumes:
gquickwit:
Loading

0 comments on commit 271eda2

Please sign in to comment.