blob: 7b5048d5d16f46746d81a93680653c1f6c033025 [file] [log] [blame]
Jiri Simsa5293dcb2014-05-10 09:56:38 -07001var assert = require('assert');
2var fs = require('fs');
3var path = require('path');
4
5module.exports = function(grunt) {
6 require('load-grunt-tasks')(grunt);
7 grunt.task.loadTasks('grunt_tasks');
8
9 grunt.initConfig({
10 pkg: grunt.file.readJSON('package.json'),
11 jshint: {
12 files: ['**/*.js'],
13 options: {
14 ignores: ['**/veyron*.js',
15 'node_modules/**/*.js']
16 }
17 }
18 });
19
Jiri Simsa9cb628d2014-05-10 10:05:50 -070020 var vIndex = __dirname.indexOf('/go/');
Jiri Simsa5293dcb2014-05-10 09:56:38 -070021 assert.notEqual(vIndex, -1, 'Failed to find Veyron root dir');
22
23 grunt.constants = {
24 LOG_DIR: path.resolve('log'),
Jiri Simsa9cb628d2014-05-10 10:05:50 -070025 VEYRON_BIN_DIR: __dirname.substr(0, vIndex) + '/go/bin',
Jiri Simsa5293dcb2014-05-10 09:56:38 -070026 VEYRON_IDENTITY_PORT: 3000,
27 VEYRON_PROXY_PORT: 3001,
28 VEYRON_WSPR_PORT: 3002
29 };
30 var c = grunt.constants;
31
32 // Make dirs as needed.
33 [c.LOG_DIR].forEach(function(dir) {
34 if (!fs.existsSync(dir)) fs.mkdirSync(dir);
35 });
36
37 // Starts all needed daemons and blocks. On Ctrl-C, kills all spawned
38 // subprocesses and then exits.
39 grunt.registerTask('start', [
40 'subtask_spawnSubprocesses'
41 ]);
42};