-
Notifications
You must be signed in to change notification settings - Fork 133
/
Gruntfile.js
227 lines (194 loc) · 6.6 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
//
// Goteo
// Gruntfile.js
//
// # Folder Paths
// to match only one level down:
// 'test/spec/{,*/}*.js'
// to recursively match all subfolders:
// 'test/spec/**/*.js'
//
var _ = require('lodash');
GOTEO = {
dir: process.cwd(),
app: 'public',
templates: 'Resources/templates',
src: 'src',
dist: 'dist',
localHost: '0.0.0.0',
localPort:8081,
livePort:35729,
// to override this parameter, simply copy:
// var/php/php.ini file to config/php.ini
// and edit it with your own data
phpINI: 'var/php/php.ini',
configFile: process.env.GOTEO_CONFIG_FILE || process.cwd() + '/config/settings.yml'
};
module.exports = function(grunt) {
if( ! grunt.file.exists(GOTEO.configFile)) {
grunt.fail.fatal( '################################################\n' +
'Please configure a settings file with this name:\n' +
GOTEO.configFile + '\n\n' +
'You can use the config/demo-settings.yml as a sample file\n' +
'################################################\n'
);
}
if( grunt.file.exists('config/php.ini')) {
GOTEO.phpINI = '../config/php.ini';
}
var defaults = grunt.file.readYAML(process.cwd() + '/Resources/defaults.yml');
var config = _.merge(defaults, grunt.file.readYAML(GOTEO.configFile));
var localHost = config.url.main;
var urlParts = localHost.split(':');
var host = urlParts[urlParts.length - 2];
if(host) {
host = host.substring(host.indexOf('//') + 2);
GOTEO.localHost = host;
grunt.log.ok('Using Host from settings: ' + host);
}
var port = parseInt(urlParts[urlParts.length - 1], 10);
if(port) {
GOTEO.localPort = port;
grunt.log.ok('Using local port from settings: ' + port);
}
var livePort = parseInt(config.plugins['goteo-dev'].liveport, 10);
if(livePort) {
GOTEO.livePort = livePort;
grunt.log.ok('Using livePort from settings: ' + livePort);
}
grunt.log.ok('CURRENT DIR',GOTEO.dir);
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('package.json'),
settings: config,
//config values
goteo: GOTEO
});
// show elapsed time at the end
require('time-grunt')(grunt);
// Load per-task config from separate files.
grunt.loadTasks('grunt');
// some non-configured tasks
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-notify');
// Default task. Just linter
grunt.registerTask('default', ['lint']);
grunt.registerTask('lint', ['yamllint', 'jshint']);
// Just returns the hostname extracted from settings.yml (or GOTEO_CONFIG_FILE)
grunt.registerTask('hostname', function() {
grunt.log.writeln(config.url.main);
});
// PRE-COMMIT ready hook
// $ cd {repo}
// $ nano .git/hooks/pre-commit
//
// #!/bin/sh
// grunt precommit
//
// $ chmod +x .git/hooks/pre-commit
grunt.registerTask('precommit', ['newer:yamllint', 'newer:jshint']);
// SERVER
// The server task is used to "start a server". If you are using php's built-in
// web server for development testing, it will be started up. We'll start watching
// any files that need to be watched for changes, and open a browser to our dev URL
grunt.registerTask('nginx_prepare', function() {
['/var/php/tmp/nginx/client_temp', '/var/php/tmp/nginx/cache', '/var/php/sessions'].forEach(function(d) {
grunt.file.mkdir(GOTEO.dir + d);
if( !grunt.file.exists(GOTEO.dir + d)) {
grunt.fail.fatal('Not existing dir: '+ GOTEO.dir + d);
}
});
});
// Uses php built-in server to execute a local development server
grunt.registerTask('serve', function (target) {
if (target === 'dist') {
return grunt.task.run([
'build:dist',
'php:dist:keepalive']);
}
if (target === 'devel') {
return grunt.task.run([
'clean:server',
'build:devel',
'php:dist:keepalive']);
}
if (target === 'nginx') {
return grunt.task.run([
'clean:server',
'copy:devel',
'copy:plugins:devel',
'sass:devel',
'nginx_prepare',
'run:fpm',
'run:nginx',
'run:fpmlog',
'watch'
]);
}
grunt.task.run([
'clean:server',
'copy:devel',
'copy:plugins:devel',
'sass:devel',
'php:livereload',
'watch'
]);
});
grunt.registerTask('server', function () {
grunt.log.warn('The `server` task has been deprecated. Use `grunt serve` to start a server.');
grunt.task.run(['serve']);
});
// Use .tmp directory to build & copy files, then watches changes on the files
grunt.registerTask('build:watch', [
'clean:server',
'copy:devel',
'copy:plugins:devel',
'sass:devel',
'watch'
]);
// Same as before but without watching files (compile and copy to .tmp only)
// This is used by docker to compile assets on docker-compose up
grunt.registerTask('build:tmp', [
'clean:server',
'copy:devel',
'copy:plugins:devel',
'sass:devel'
]);
// Standard build (copy & minification to dist folder). This leaves ready the dist folder to
// point a real server there
grunt.registerTask('build:dist', [
'build'
]);
// Build the dist folder without compression (useful for apache/nginx servers pointing that dir)
grunt.registerTask('build:devel', [
'clean:dist',
'copy:dist',
'copy:plugins:dist',
'copy:fonts',
'sass:dist'
]);
//build and uploads
grunt.registerTask('deploy', function(){
grunt.task.run(['build']);
if(grunt.config.get('settings').filesystem.handler === 's3') {
grunt.task.run(['aws_s3']);
}
});
grunt.registerTask('build', [
'clean:dist',
'copy:devel', // copy assets to .tmp for postprocessing
'sass:devel',
'copy:plugins:devel',
'copy:dist', // copy from to dist as well
'copy:plugins:dist',
'copy:fonts',
'sass:dist',
'useminPrepare',
'concat:generated',
'cssmin:dist', // manually minify css
'uglify:dist', // manually minify js
'filerev:dist',
'usemin'
]);
};