app.set(name, value)
Assigns setting name to value, where name is one of the properties from the app settings table.
Calling app.set('foo', true) for a Boolean property is the same as calling app.enable('foo'). Similarly, calling app.set('foo', false) for a Boolean property is the same as calling app.disable('foo').
Retrieve the value of a setting with app.get().
app.set('title', 'My Site');
app.get('title'); // "My Site"
Application Settings
The following table lists application settings.
Not