Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jfranz on github.
  • I am jfranz (https://keybase.io/jfranz) on keybase.
  • I have a public key ASCPWSDCvRwICb2-wpu9ujiipt1UKacCqYlxecCqCGgdTwo

To claim this, I am signing this object:

@jfranz
jfranz / Gruntfile.js
Created October 18, 2013 00:15
grunt-connect-proxy config for Ember App Kit
// add 'configureProxies' before 'connect:server' in the test:server and server tasks
grunt.registerTask('test:server', "Start a Karma test server. Automatically reruns your tests when files change and logs the results to the terminal.", [
'build:debug', 'karma:server', 'configureProxies', 'connect:server', 'watch:test']);
grunt.registerTask('server', "Run your server in development mode, auto-rebuilding when files change.",
['build:debug', 'configureProxies', 'connect:server', 'watch:main']);