From 495665088bcc8410fc20f45709d981ab64d4b9fd Mon Sep 17 00:00:00 2001 From: Tom Gallacher Date: Mon, 17 Oct 2016 14:45:05 +0100 Subject: [PATCH] Fixing issues with bin/setup.sh We accidentally were including some boilerplate from the project that the setup files was pulled from. --- .gitignore | 3 +++ bin/setup.sh | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7f3fff9f..13737477 100644 --- a/.gitignore +++ b/.gitignore @@ -48,3 +48,6 @@ jspm_packages # Mac OS dirty files .DS_Store + +# Application Specific +.env diff --git a/bin/setup.sh b/bin/setup.sh index 3a758055..7f682690 100755 --- a/bin/setup.sh +++ b/bin/setup.sh @@ -64,8 +64,6 @@ write_env_file() { [[ -f .env ]] || { echo '# Consul discovery via Triton CNS' >> .env echo CONSUL=consul.svc.${TRITON_ACCOUNT}.${TRITON_DC}.cns.joyent.com >> .env - echo MONGO_URL=mongodb://mongo.svc.${TRITON_ACCOUNT}.${TRITON_DC}.cns.joyent.com:27017/rocketchat >> .env - echo ROOT_URL=http://rocketchat.svc.${TRITON_ACCOUNT}.${TRITON_DC}.cns.joyent.com:3000/ >> .env echo >> .env } }