feedback-kit-skills 1.0.13 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
[](https://github.com/tianhaoz95/feedback-kit/actions/workflows/publish-cli.yml)
|
|
6
6
|
[](https://github.com/tianhaoz95/feedback-kit/actions/workflows/publish-skills.yml)
|
|
7
7
|
[](https://github.com/tianhaoz95/feedback-kit/actions/workflows/deploy-web.yml)
|
|
8
|
+
[](https://github.com/tianhaoz95/feedback-kit/actions/workflows/deploy-functions.yml)
|
|
8
9
|
|
|
9
10
|
An iOS + macOS + watchOS SDK for capturing in-app user feedback (screenshot +
|
|
10
11
|
annotations + description + device/app/screen info on iOS/macOS; text +
|
|
@@ -206,21 +207,21 @@ integration page:
|
|
|
206
207
|
- Working directory: `.` (repo root, since `supabase/` lives directly there)
|
|
207
208
|
- Deploy to production: on, with production branch `main`
|
|
208
209
|
|
|
209
|
-
**Edge Functions** (`ingest-feedback`,
|
|
210
|
-
`create-
|
|
211
|
-
deployed
|
|
210
|
+
**Edge Functions** (`ingest-feedback`, `create-github-issue`, `github-webhook`,
|
|
211
|
+
plus billing functions `create-checkout-session` / `create-portal-session` /
|
|
212
|
+
`stripe-webhook`) are automatically deployed to production via GitHub Actions
|
|
213
|
+
(`.github/workflows/deploy-functions.yml`) on every push to `main` touching
|
|
214
|
+
`supabase/functions/**`.
|
|
215
|
+
|
|
216
|
+
They can also be deployed manually from the command line:
|
|
212
217
|
|
|
213
218
|
```bash
|
|
214
|
-
supabase login # once per machine — interactive browser OAuth
|
|
215
219
|
./scripts/deploy-functions.sh # deploy every function
|
|
216
220
|
./scripts/deploy-functions.sh ingest-feedback # or just one
|
|
217
221
|
```
|
|
218
222
|
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
Supabase personal access token, which grants Management API access to
|
|
222
|
-
every project on the account, not just this one. Not worth storing an
|
|
223
|
-
account-wide secret in CI for a function that changes rarely.
|
|
223
|
+
Requires `SUPABASE_ACCESS_TOKEN` set in your environment or running `supabase login` once per machine.
|
|
224
|
+
|
|
224
225
|
|
|
225
226
|
### Turning on real billing
|
|
226
227
|
|