File tree Expand file tree Collapse file tree 5 files changed +3
-57
lines changed
Expand file tree Collapse file tree 5 files changed +3
-57
lines changed Original file line number Diff line number Diff line change 1- ## @hypr/web
2-
3- - ` apps/web/.env ` is used for ` pnpm -F web dev ` .
4- - ` task web:env-sample ` will modify ` apps/web/.env.sample ` based on ` apps/web/.env ` .
5- - ` task web:env-prod ` will put ` apps/web/.env.prod ` to the Cloudflare.
6- - ` task web:supabase-env ` will put that to the hosted Supabase.
7-
8- ## @hypr/desktop
9-
10- TODO
1+ https://hyprnote.com/docs/developers
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export const env = createEnv({
1010 SUPABASE_URL : z . url ( ) ,
1111 SUPABASE_ANON_KEY : z . string ( ) . min ( 1 ) ,
1212 SUPABASE_SERVICE_ROLE_KEY : z . string ( ) . min ( 1 ) ,
13- STRIPE_API_KEY : z . string ( ) . min ( 1 ) ,
13+ STRIPE_SECRET_KEY : z . string ( ) . min ( 1 ) ,
1414 STRIPE_WEBHOOK_SECRET : z . string ( ) . min ( 1 ) ,
1515 OPENROUTER_API_KEY : z . string ( ) . min ( 1 ) ,
1616 DEEPGRAM_API_KEY : z . string ( ) . min ( 1 ) ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Stripe from "stripe";
33
44import { env } from "./env" ;
55
6- export const stripe = new Stripe ( env . STRIPE_API_KEY , {
6+ export const stripe = new Stripe ( env . STRIPE_SECRET_KEY , {
77 apiVersion : "2025-10-29.clover" ,
88} ) ;
99
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments