aboutsummaryrefslogtreecommitdiff
path: root/server/config/env.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/config/env.js')
-rw-r--r--server/config/env.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/config/env.js b/server/config/env.js
index 441d6b6..e9349d2 100644
--- a/server/config/env.js
+++ b/server/config/env.js
@@ -3,6 +3,7 @@ module.exports = {
port: process.env.PORT || 3000,
mongoUrl: process.env.DB_CONN || "mongodb://localhost/mevn_ecommerce_db",
masterKey: process.env.APP_SECRET || "you-should-use-something-different",
+ siteUrl: process.env.SITE_URL || `http://localhost:${process.env.PORT || 3000}`,
paypalEnvironment: process.env.PAYPAL_ENVIRONMENT || "sandbox",
paypalClientId: process.env.PAYPAL_CLIENT_ID || 'PAYPAL-SANDBOX-CLIENT-ID',
paypalClientSecret: process.env.PAYPAL_CLIENT_SECRET || 'PAYPAL-SANDBOX-CLIENT-SECRET'