From b61bf3c86759dbeca018d112658c6abe3a6a6ee6 Mon Sep 17 00:00:00 2001 From: Danny Coates Date: Mon, 24 Sep 2018 13:04:29 -0700 Subject: [PATCH] changed default config to have accounts disabled --- package.json | 2 +- server/config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a654d920..24c965bf 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "test:frontend": "cross-env NODE_ENV=development node test/frontend/runner.js && nyc report --reporter=html", "test-integration": "docker-compose up --abort-on-container-exit --exit-code-from integration-tests --build --remove-orphans --quiet-pull && docker-compose down", "test-integration-stage": "cross-env BASE_URL=https://send.stage.mozaws.net npm run test-integration", - "start": "npm run clean && cross-env NODE_ENV=development BASE_URL=http://localhost:8080 webpack-dev-server --mode=development", + "start": "npm run clean && cross-env NODE_ENV=development FXA_CLIENT_ID=fced6b5e3f4c66b9 BASE_URL=http://localhost:8080 webpack-dev-server --mode=development", "prod": "node server/bin/prod.js" }, "lint-staged": { diff --git a/server/config.js b/server/config.js index 09184072..5455b61d 100644 --- a/server/config.js +++ b/server/config.js @@ -132,7 +132,7 @@ const conf = convict({ }, fxa_client_id: { format: String, - default: 'fced6b5e3f4c66b9', // localhost + default: '', // disabled env: 'FXA_CLIENT_ID' } });