Last active
August 29, 2015 14:18
-
-
Save keown/1bf9d15ad93520185184 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
grunt.initConfig | |
pkg: grunt.file.readJSON('package.json') | |
yeoman: | |
client: require('./bower.json').appPath or 'client' | |
dist: 'dist' | |
exec: | |
j2c: | |
cmd: './j2c.sh' | |
express: | |
options: | |
protocol: 'https' | |
port: 8443 | |
key: grunt.file.read('certs/server.key').toString() | |
cert: grunt.file.read('certs/server.crt').toString() | |
ca: grunt.file.read('certs/ca.crt').toString() | |
debug: true | |
dev: options: | |
script: '.dev_server/app.js' | |
debug: true | |
prod: options: script: 'dist/server/app.js' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment