I\'m trying to change my websites name. Can\'t find where I can set title or app name.
To customise your app's name simply add the following to the module.exports = { … } block in the file config/local.js
appName : 'My Brilliant App',
You can also override the page's title within your controller by passing in your own title value to the view renderer.
res.view({title: 'My brilliant title'});
and, to be SEO friendly, in your jade template specify
head
title= sails.config.appName + " | " + title