tellform/config/env/all.js

93 lines
2.4 KiB
JavaScript
Raw Normal View History

2015-06-29 22:51:29 +00:00
'use strict';
module.exports = {
app: {
2016-04-24 18:34:19 +00:00
google_analytics_id: process.env.GOOGLE_ANALYTICS_ID || '';
2015-11-16 22:25:39 +00:00
title: 'TellForm',
2015-11-23 19:19:02 +00:00
description: 'Opensource form builder alternative to TypeForm',
keywords: 'typeform, pdfs, forms, opensource, formbuilder, google forms, nodejs',
2015-06-29 22:51:29 +00:00
},
2015-07-13 19:33:43 +00:00
port: process.env.PORT || 3000,
2015-06-29 22:51:29 +00:00
templateEngine: 'swig',
2015-07-13 21:47:24 +00:00
2015-07-27 18:11:43 +00:00
baseUrl: '',
2015-08-07 21:02:44 +00:00
tempUserCollection: 'temporary_users',
mailosaur: {
key: process.env.MAILOSAUR_KEY || '',
mailbox_id: process.env.MAILOSAUR_MAILBOX || '',
},
2015-07-27 18:11:43 +00:00
2015-07-13 21:47:24 +00:00
//Sentry DSN Client Key
2016-04-24 18:34:19 +00:00
//DSN:
2015-07-13 22:11:40 +00:00
2015-06-29 22:51:29 +00:00
// The secret should be set to a non-guessable string that
// is used to compute a session hash
sessionSecret: 'MEAN',
// The name of the MongoDB collection to store sessions in
sessionCollection: 'sessions',
// The session cookie settings
sessionCookie: {
path: '/',
httpOnly: true,
// If secure is set to true then it will cause the cookie to be set
// only when SSL-enabled (HTTPS) is used, and otherwise it won't
// set a cookie. 'true' is recommended yet it requires the above
// mentioned pre-requisite.
secure: false,
// Only set the maxAge to null if the cookie shouldn't be expired
// at all. The cookie will expunge when the browser is closed.
maxAge: null,
// To set the cookie in a specific domain uncomment the following
// setting:
2015-11-23 19:19:02 +00:00
// domain: 'tellform.com'
2015-06-29 22:51:29 +00:00
},
/*
* Upload Configuration
*/
//Global upload path
2015-06-29 22:51:29 +00:00
uploadPath : 'uploads/',
//PDF storage path
pdfUploadPath: 'uploads/pdfs/',
//Temp files storage path
tmpUploadPath: 'uploads/tmp/',
// The session cookie name
sessionName: 'connect.sid',
log: {
// Can specify one of 'combined', 'common', 'dev', 'short', 'tiny'
format: 'combined',
// Stream defaults to process.stdout
// Uncomment to enable logging to a log on the file system
options: {
stream: 'access.log'
}
},
assets: {
css: [
'public/modules/**/css/*.css'
],
js: [
'public/dist/populate_template_cache.js',
2016-04-24 17:36:20 +00:00
'public/config.js',
'public/application.js',
2015-06-29 22:51:29 +00:00
'public/modules/*/*.js',
'public/modules/*/*[!tests]*/*.js'
],
2015-08-21 00:17:14 +00:00
views: [
'public/modules/*/views/*.html',
'public/modules/*/views/*/*.html',
'public/modules/*/views/*/*/*.html',
2015-08-21 00:17:14 +00:00
],
unit_tests: [
2015-06-29 22:51:29 +00:00
'public/lib/angular-mocks/angular-mocks.js',
'public/modules/*/tests/unit/*.js',
'public/modules/*/tests/unit/**/*.js',
],
e2e_tests: [
'public/modules/*/tests/e2e/**.js',
2015-06-29 22:51:29 +00:00
]
}
};