11 lines
558 B
TypeScript
11 lines
558 B
TypeScript
// ─── Environment Configuration ───────────────────────────────────────────────
|
|
// Centralizes all environment keys for the application.
|
|
// Since React Native doesn't natively expose process.env at runtime,
|
|
// we export them directly from here.
|
|
|
|
export const ENV = {
|
|
STRIPE_PUBLISHABLE_KEY:
|
|
'pk_test_51Ox04DSHlFQYe8R5Cvm8i6n99QynUNj7WQzACB89PImnt0X8Z54SBFM22ghSNHYFo7OgVcyba9QhhyrrdRqRPJpF00Us8XJv7f',
|
|
RAZORPAY_KEY_ID: 'rzp_test_TCxbW8AxcXgMCj',
|
|
};
|