Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: open Jaeger URL cross-platform in npm up (#367)

`open` is macOS-only; Linux uses `xdg-open`. Fall back to `xdg-open`
so the script works on both platforms without failing.

Closes #355

authored by

Cassidy James Blaede and committed by
GitHub
bd3528d9 58a6800b

+1 -1
+1 -1
package.json
··· 18 18 "generate:watch": "graphql-codegen --watch \"server/graphql/**/**.ts\"", 19 19 "prepare": "husky", 20 20 "lint": "cd client && npm run lint; cd ../server && npm run lint", 21 - "up": "docker compose up --detach postgres clickhouse hma scylla redis otel-collector && open http://localhost:16686", 21 + "up": "docker compose up --detach postgres clickhouse hma scylla redis otel-collector && (open http://localhost:16686 || xdg-open http://localhost:16686)", 22 22 "down": "docker compose down" 23 23 }, 24 24 "dependencies": {