This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
fullstack-open/part4/bloglist/utils/config.js
Andrew Trieu 15043bbd4b Upload 4.2
2023-05-31 13:09:58 +03:00

9 lines
145 B
JavaScript

require('dotenv').config()
const PORT = process.env.PORT
const MONGODB_URI = process.env.MONGODB_URI
module.exports = {
MONGODB_URI,
PORT
}