diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2,12 +2,14 @@ ## Development setup -Run `soc_collector` on port 8000. The commit pointed to by the `soc_collector` submodule is compatible with `main` in this repo. +Run `soc_collector` and set env var `COLLECTOR_URL`. + +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 @- http://localhost:8000/sc/v0/add +cat example_data.json | curl -s -u user3:pw3 --data-binary @- ${COLLECTOR_URL}/sc/v0/add ``` Get dependencies and start the front end: |