()
| 1 | const path = require("path"); |
| 2 | |
| 3 | const getEnvVariables = () => { |
| 4 | |
| 5 | const configPath = path.join(__dirname, "..", "config"); |
| 6 | |
| 7 | require('dotenv').config({ path: configPath + "/prod.env"}) |
| 8 | } |
| 9 | |
| 10 | module.exports = getEnvVariables; |
no outgoing calls
no test coverage detected