sannimichaelse/Parcel-Delivery

View on GitHub
server/config/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import dotenv from 'dotenv';

dotenv.config();

const config = {
  testDB: process.env.TEST_DATABASE_URL,
  jwtSecretKey: process.env.JWT_SECRET_KEY,
  sendGridKey: process.env.SENDGRID_API_KEY,
};

export default config;