Skip to content

Commit

Permalink
Create apiKeys.js
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Dec 4, 2024
1 parent 00eb5d3 commit e1234cd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/config/apiKeys.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// config/apiKeys.js

const environment = require('./environment');

const apiKeys = {
STRIPE_API_KEY: process.env.STRIPE_API_KEY || 'your_stripe_api_key',
TWILIO_ACCOUNT_SID: process.env.TWILIO_ACCOUNT_SID || 'your_twilio_account_sid',
TWILIO_AUTH_TOKEN: process.env.TWILIO_AUTH_TOKEN || 'your_twilio_auth_token',
BINANCE_API_KEY: process.env.BINANCE_API_KEY || 'your_binance_api_key',
};

module.exports = apiKeys;

0 comments on commit e1234cd

Please sign in to comment.