made couchserver configurable via settings.json
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/ad3edf81 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/ad3edf81 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/ad3edf81 Branch: refs/heads/api-options Commit: ad3edf811182045b69d5e400be34b1f0133e3e3e Parents: 42c4493 Author: BigBlueHat <[email protected]> Authored: Tue Jan 14 14:27:27 2014 -0500 Committer: Garren Smith <[email protected]> Committed: Wed Jan 15 09:01:19 2014 +0200 ---------------------------------------------------------------------- src/fauxton/Gruntfile.js | 37 +++++++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/ad3edf81/src/fauxton/Gruntfile.js ---------------------------------------------------------------------- diff --git a/src/fauxton/Gruntfile.js b/src/fauxton/Gruntfile.js index 49b52a4..cf70440 100644 --- a/src/fauxton/Gruntfile.js +++ b/src/fauxton/Gruntfile.js @@ -112,6 +112,28 @@ module.exports = function(grunt) { return settings.template || defaultSettings; }(); + var couchserver_config = function () { + // add a "couchserver" key to settings.json with JSON that matches the + // keys and values below (plus your customizations) to have Fauxton work + // against a remote CouchDB-compatible server. + var defaults = { + dist: './dist/debug/', + port: 8000, + proxy: { + target: { + host: 'localhost', + port: 5984, + https: false + }, + // This sets the Host header in the proxy so that you can use external + // CouchDB instances and not have the Host set to 'localhost' + changeOrigin: true + } + }; + + return helper.readSettingsFile().couchserver || defaults; + }(); + grunt.initConfig({ // The clean task ensures all files are removed from the dist/ directory so @@ -223,20 +245,7 @@ module.exports = function(grunt) { }, // Runs a proxy server for easier development, no need to keep deploying to couchdb - couchserver: { - dist: './dist/debug/', - port: 8000, - proxy: { - target: { - host: 'localhost', - port: 5984, - https: false - }, - // This sets the Host header in the proxy so that you can use external - // CouchDB instances and not have the Host set to 'localhost' - changeOrigin: true - } - }, + couchserver: couchserver_config, watch: { js: {
