* feat: add plugin system * fix db docker build * fix hammerhead readme, add strava subscription news to docs * fixes and sdk improvements * fix: reduce Meilisearch load, debounce federation sync (#1012) * optimize meili trail index * several fixes --------- Co-authored-by: Flomp <Flomp@users.noreply.github.com> * Bump svelte from 5.55.5 to 5.56.0 in /docs (#1032) Bumps [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) from 5.55.5 to 5.56.0. - [Release notes](https://github.com/sveltejs/svelte/releases) - [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md) - [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.56.0/packages/svelte) --- updated-dependencies: - dependency-name: svelte dependency-version: 5.56.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Flomp <Flomp@users.noreply.github.com> * Release v0.19.2 (#1035) * chore: release v0.19.2 * add changelog --------- Co-authored-by: Flomp <26000991+Flomp@users.noreply.github.com> Co-authored-by: Christian Beutel <> * speed up plugin sync and several small fixes * concepts for security improvements and process stability * improve concept * security concept implemented * remove insecure TLS * worker concept implemented * fixes and cleanup * fixes * docu * mermaid, namings * WASM plugin host improvements, plugin logging * fix db migration * Improve plugin config and category mapping UI * fixes * further fixes * remove manual test sync * fix db migration and strava mapping * type added, UI improvements * fix plugin card toggle clickable area * optimize synch status card layout * plugin type 'trails' instead of 'integration' * session auth validation in UI * fix komoot date and waypoints * improve category mapping * fix send to hammerhead: trail name * plugin setup error handling improved * fix review findings * re-mapping added * rename remote_category --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Flomp <Flomp@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Flomp <26000991+Flomp@users.noreply.github.com>
76 lines
2.0 KiB
Makefile
76 lines
2.0 KiB
Makefile
## db
|
|
|
|
.PHONY: db-fmt
|
|
db-fmt:
|
|
cd db && go fmt ./...
|
|
|
|
.PHONY: db-vet
|
|
db-vet:
|
|
cd db && go vet ./...
|
|
|
|
.PHONY: db-test
|
|
db-test:
|
|
cd db && go test ./...
|
|
|
|
.PHONY: db-build
|
|
db-build:
|
|
cd db && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o pocketbase_amd64
|
|
|
|
.PHONY: db-build-docker
|
|
db-build-docker: db-build
|
|
docker buildx build db/ --no-cache -t flomp/wanderer-db:latest
|
|
|
|
## Web
|
|
|
|
.PHONY: web-install
|
|
web-install:
|
|
cd web && npm install
|
|
|
|
.PHONY: web-playwright-install
|
|
web-playwright-install:
|
|
cd web && npx playwright install --with-deps chromium
|
|
|
|
.PHONY: web-check
|
|
web-check:
|
|
cd web && npm run check
|
|
|
|
.PHONY: web-test
|
|
web-test:
|
|
cd web && npm run test
|
|
|
|
.PHONY: web-build-docker
|
|
web-build-docker:
|
|
docker buildx build web/ --no-cache -t flomp/wanderer-web:latest
|
|
|
|
## Plugins
|
|
|
|
.PHONY: plugins-test
|
|
plugins-test:
|
|
cd plugins/sdk && go test ./...
|
|
cd plugins/hammerhead && go test ./...
|
|
cd plugins/komoot && go test ./...
|
|
cd plugins/strava && go test ./...
|
|
|
|
.PHONY: plugins-build
|
|
plugins-build:
|
|
cd plugins/hammerhead && XDG_CACHE_HOME=$${XDG_CACHE_HOME:-/tmp/wanderer-tinygo-cache} make build
|
|
cd plugins/komoot && XDG_CACHE_HOME=$${XDG_CACHE_HOME:-/tmp/wanderer-tinygo-cache} make build
|
|
cd plugins/strava && XDG_CACHE_HOME=$${XDG_CACHE_HOME:-/tmp/wanderer-tinygo-cache} make build
|
|
|
|
.PHONY: plugins-install-local
|
|
plugins-install-local: plugins-build
|
|
mkdir -p data/plugins
|
|
rm -rf data/plugins/hammerhead data/plugins/komoot data/plugins/strava
|
|
cp -a plugins/hammerhead/dist/hammerhead data/plugins/
|
|
cp -a plugins/komoot/dist/komoot data/plugins/
|
|
cp -a plugins/strava/dist/strava data/plugins/
|
|
|
|
.PHONY: plugins-package
|
|
plugins-package: plugins-build
|
|
rm -rf plugin_dist
|
|
mkdir -p plugin_dist
|
|
tar -C plugins/hammerhead/dist -czf plugin_dist/wanderer-plugin-hammerhead.tar.gz hammerhead
|
|
tar -C plugins/komoot/dist -czf plugin_dist/wanderer-plugin-komoot.tar.gz komoot
|
|
tar -C plugins/strava/dist -czf plugin_dist/wanderer-plugin-strava.tar.gz strava
|
|
cd plugin_dist && sha256sum *.tar.gz > SHA256SUMS
|