From c5cb3f9cc4bcfffc87bcb0281f84248ea162aad1 Mon Sep 17 00:00:00 2001 From: ryanbillingsley Date: Wed, 29 Apr 2015 11:05:00 -0400 Subject: [PATCH] Splitting configuration for staging and production --- build/push_prod.sh | 2 +- build/push_staging.sh | 2 +- web.prod.config | 101 +++++++++++++++++++++++++++++++ web.config => web.staging.config | 0 4 files changed, 103 insertions(+), 2 deletions(-) create mode 100644 web.prod.config rename web.config => web.staging.config (100%) diff --git a/build/push_prod.sh b/build/push_prod.sh index 025751e31..7edaa68d7 100755 --- a/build/push_prod.sh +++ b/build/push_prod.sh @@ -2,7 +2,7 @@ rm -rf .git ember build -prod -cp ./web.config ./dist +cp ./web.prod.config ./dist/web.config cp -r ./bin ./dist/bin cd ./dist git init diff --git a/build/push_staging.sh b/build/push_staging.sh index d20b2fe47..1044b17a5 100755 --- a/build/push_staging.sh +++ b/build/push_staging.sh @@ -2,7 +2,7 @@ rm -rf .git ember build -e staging -cp ./web.config ./dist +cp ./web.staging.config ./dist/web.config cp -r ./bin ./dist/bin cd ./dist git init diff --git a/web.prod.config b/web.prod.config new file mode 100644 index 000000000..e5493c384 --- /dev/null +++ b/web.prod.config @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web.config b/web.staging.config similarity index 100% rename from web.config rename to web.staging.config