Use dotenv to load environment variables from .env file

This commit is contained in:
Nihanth Subramanya 2018-02-01 07:23:19 +05:30
Родитель 2dacd5b361
Коммит 7bc3956e5a
4 изменённых файлов: 8 добавлений и 2 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -1,3 +1,2 @@
smtp-credentials.json
node_modules
.local-run.sh
.env

5
package-lock.json сгенерированный
Просмотреть файл

@ -136,6 +136,11 @@
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
"integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
},
"dotenv": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-5.0.0.tgz",
"integrity": "sha512-p4A7snaxI9Hnj3GDWhTpckHYcd9WwZDmGPcvJJV3CoRFq0Dvsp96eYgXBl9WbmbJfuxqiZ2WenNaeWSs675ghQ=="
},
"ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",

Просмотреть файл

@ -3,6 +3,7 @@
"body-parser": "^1.18.2",
"client-oauth2": "^4.1.0",
"client-sessions": "^0.8.0",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"nodemailer": "^4.4.0",
"popsicle": "^9.2.0"

Просмотреть файл

@ -1,5 +1,6 @@
"use strict";
require("dotenv").load();
const express = require("express");
const bodyParser = require("body-parser");
const nodemailer = require("nodemailer");