34968-vm/includes/api_keys.php
Flatlogic Bot 369f552c9f V6
2025-10-15 00:49:03 +00:00

12 lines
423 B
PHP

<?php
// includes/api_keys.php
// IMPORTANT: Replace these placeholder keys with your actual Stripe API keys.
// You can find your keys in your Stripe dashboard: https://dashboard.stripe.com/apikeys
// Secret key (keep this secure on the server)
define('STRIPE_API_KEY', 'sk_test_YOUR_SECRET_KEY');
// Publishable key (safe to use in client-side code)
define('STRIPE_PUBLISHABLE_KEY', 'pk_test_YOUR_PUBLISHABLE_KEY');
?>