blob: ed1a91e8fd4607c0fd97df72cd788f0d39e09a4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# soc_dashboard
## Development setup
Env vars:
- `COLLECTOR_URL`
- `JWT_URL`
- `PER_PAGE`
The commit pointed to by the `soc_collector` submodule is compatible with `main` in this repo.
Populate `soc_collector` with data from `example_data.json`:
```
cat example_data.json | curl -s -u user3:pw3 --data-binary @- ${COLLECTOR_URL}/sc/v0/add
```
Get dependencies and start the front end:
```
npm run start
```
|