From 298767f5eccb0fe9cc9c759a90ce992b80394570 Mon Sep 17 00:00:00 2001 From: David Baldwynn Date: Tue, 12 Apr 2016 00:52:33 -0400 Subject: [PATCH] deleted .env files --- .gitignore | 3 ++- ecosystem.json | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index c7bd733f..5f85fd26 100755 --- a/.gitignore +++ b/.gitignore @@ -30,7 +30,8 @@ access.log uploads/ # API keys file api_keys.js - +*.env + # Sublime editor # ============== .sublime-project diff --git a/ecosystem.json b/ecosystem.json index db06f31b..1602c04d 100644 --- a/ecosystem.json +++ b/ecosystem.json @@ -6,14 +6,15 @@ }], "deploy" : { "production" : { - "user" : "node", - "host" : "localhost", + "user" : "root", + "host" : "159.203.42.158", "ref" : "origin/master", "repo" : "git@github.com:whitef0x0/tellform.git", "path" : "/opt/deploy", "post-deploy" : "npm install && bower install --allow-root && pm2 startOrRestart ecosystem.json --env production", "env" : { - "NODE_ENV": "production" + "NODE_ENV": "production", + "BASE_URL": "stage.tellform.com" } } }