mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-05 05:05:08 +02:00
539a6600cd
Resolved 10 conflicted files:
- VERSION/package.json: kept 0.12.0.0 (feature branch version)
- CHANGELOG.md: preserved both branch entry and main's new entries
- supabase/config.sh: kept GSTACK_WEB_URL, accepted TELEMETRY_ENDPOINT removal
- bin/gstack-{community-dashboard,telemetry-log,telemetry-sync,update-check}:
took main's improved versions (edge function approach, safe cursor, UUID gen)
- supabase/functions/community-pulse: took main's count-based approach
- test/telemetry.test.ts: took main's structure with fingerprint field name
Post-merge fixes:
- Removed shadowed local RESOLVERS/functions in gen-skill-docs.ts (main's
resolver imports now take precedence for tier-based preamble, coverage gates)
- Added 3 missing E2E_TIERS entries (ship-plan-*, review-plan-completion)
- Updated telemetry test to match current prompt text
- Regenerated all SKILL.md files
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
503 B
Bash
12 lines
503 B
Bash
#!/usr/bin/env bash
|
|
# Supabase project config for gstack telemetry
|
|
# These are PUBLIC keys — safe to commit (like Firebase public config).
|
|
# RLS denies all access to the anon key. All reads and writes go through
|
|
# edge functions (which use SUPABASE_SERVICE_ROLE_KEY server-side).
|
|
|
|
GSTACK_SUPABASE_URL="https://frugpmstpnojnhfyimgv.supabase.co"
|
|
GSTACK_SUPABASE_ANON_KEY="sb_publishable_tR4i6cyMIrYTE3s6OyHGHw_ppx2p6WK"
|
|
|
|
# gstack.gg web app (auth + screenshot upload)
|
|
GSTACK_WEB_URL="https://gstack.gg"
|