Merge branch 'master' of github.com:whitef0x0/tellform

This commit is contained in:
David Baldwynn 2016-04-24 13:19:42 -04:00
commit 2b0d80a769
4 changed files with 10 additions and 9 deletions

5
.gitignore vendored
View file

@ -27,12 +27,13 @@ app/tests/coverage/
# ======================
config/sslcerts/*.pem
access.log
#public/dist/
public/dist/
public/dist/populate_template_cache.js
uploads/
# API keys file
api_keys.js
*.env
# Sublime editor
# ==============
.sublime-project

View file

@ -1,7 +1,7 @@
TellForm
========
Current stable release: v1.2.1
Current stable release: v1.3.0
[![Build Status](https://travis-ci.org/whitef0x0/tellform.svg?branch=master)](https://travis-ci.org/whitef0x0/tellform)
[![Dependency Status](https://gemnasium.com/whitef0x0/tellform.svg)](https://gemnasium.com/whitef0x0/tellform)

4
config/env/all.js vendored
View file

@ -45,7 +45,7 @@ module.exports = {
/*
* Upload Configuration
*/
//Global upload path
//Global upload path
uploadPath : 'uploads/',
//PDF storage path
pdfUploadPath: 'uploads/pdfs/',
@ -70,7 +70,7 @@ module.exports = {
js: [
'public/config.js',
'public/application.js',
'public/populate_template_cache.js',
'public/dist/populate_template_cache.js',
'public/modules/*/*.js',
'public/modules/*/*[!tests]*/*.js'
],

View file

@ -2,7 +2,7 @@
module.exports = function(grunt) {
require('jit-grunt')(grunt);
// Unified Watch Object
var watchFiles = {
serverViews: ['app/views/**/*.*'],
@ -157,7 +157,7 @@ module.exports = function(grunt) {
src: watchFiles.serverTests,
options: {
reporter: 'spec',
quiet: false,
quiet: false,
require: 'server.js',
ui: 'bdd'
}
@ -243,7 +243,7 @@ module.exports = function(grunt) {
},
main: {
src: ['public/modules/**/views/**.html', 'public/modules/**/views/**/*.html'],
dest: 'public/populate_template_cache.js'
dest: 'public/dist/populate_template_cache.js'
}
}
});
@ -282,7 +282,7 @@ module.exports = function(grunt) {
// Default task(s).
grunt.registerTask('default', ['lint', 'html2js:main', 'env', 'concurrent:default']);
// Debug task.
grunt.registerTask('debug', ['lint', 'html2js:main', 'concurrent:debug']);