-
-
Save amenzies/8047326 to your computer and use it in GitHub Desktop.
I believe that there is an error in the original gist and that grunt.loadNpmTask should be grunt.loadNpmTasks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var proxySnippet = require('grunt-connect-proxy/lib/utils').proxyRequest; | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
watch: { | |
all: { | |
files: ['Gruntfile.js'] | |
} | |
}, | |
connect: { | |
'static': { | |
options: { | |
hostname: 'localhost', | |
port: 8001 | |
} | |
}, | |
server: { | |
options: { | |
hostname: 'localhost', | |
port: 8000, | |
middleware: function(connect) { | |
return [proxySnippet]; | |
} | |
}, | |
proxies: [ | |
{ | |
context: '/svc', | |
host: 'myserviceshost', | |
port: 8080 | |
}, | |
{ | |
context: '/api', | |
host: 'myapihost', | |
port: 9080 | |
}, | |
{ | |
context: '/', | |
host: 'localhost', | |
port: 8001 | |
} | |
] | |
}, | |
fakeServer: { | |
options: { | |
hostname: 'localhost', | |
port: 8000, | |
middleware: function(connect) { | |
return [proxySnippet]; | |
} | |
}, | |
proxies: [ | |
{ | |
context: '/svc', | |
host: 'localhost', | |
port: 8080 | |
}, | |
{ | |
context: '/api', | |
host: 'localhost', | |
port: 9080 | |
}, | |
{ | |
context: '/', | |
host: 'localhost', | |
port: 8001 | |
} | |
] | |
} | |
} | |
}); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.loadNpmTasks('grunt-contrib-connect'); | |
grunt.loadNpmTasks('grunt-connect-proxy'); | |
grunt.registerTask('server', ['connect:static', 'configureProxies:server', 'connect:server', 'watch']); | |
grunt.registerTask('fakeServer', ['connect:static', 'configureProxies:fakeServer', 'connect:fakeServer', 'watch']); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment