mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
33 lines
950 B
JavaScript
33 lines
950 B
JavaScript
/**
|
|
* Custom configuration
|
|
* (sails.config.custom)
|
|
*
|
|
* One-off settings specific to your application.
|
|
*
|
|
* For more information on custom configuration, visit:
|
|
* https://sailsjs.com/config/custom
|
|
*/
|
|
|
|
const path = require('path');
|
|
const sails = require('sails');
|
|
|
|
module.exports.custom = {
|
|
/**
|
|
*
|
|
* Any other custom config this Sails app should use during development.
|
|
*
|
|
*/
|
|
|
|
baseUrl: process.env.BASE_URL,
|
|
|
|
tokenExpiresIn: parseInt(process.env.TOKEN_EXPIRES_IN, 10) || 365,
|
|
|
|
userAvatarsPath: path.join(sails.config.paths.public, 'user-avatars'),
|
|
userAvatarsUrl: `${process.env.BASE_URL}/user-avatars`,
|
|
|
|
projectBackgroundImagesPath: path.join(sails.config.paths.public, 'project-background-images'),
|
|
projectBackgroundImagesUrl: `${process.env.BASE_URL}/project-background-images`,
|
|
|
|
attachmentsPath: path.join(sails.config.appPath, 'private', 'attachments'),
|
|
attachmentsUrl: `${process.env.BASE_URL}/attachments`,
|
|
};
|