mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08:00
Add additional explanations to default configuration
This commit is contained in:
parent
4e6d9caa71
commit
15e3481b40
|
@ -1,8 +1,13 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
urls: {
|
urls: {
|
||||||
|
// Default path of the rest-endpoint
|
||||||
endpointRest: 'rest',
|
endpointRest: 'rest',
|
||||||
|
// Default path of the webhook-endpoint
|
||||||
endpointWebhook: 'webhook',
|
endpointWebhook: 'webhook',
|
||||||
|
// Default path of the webhook-endpoint for testing
|
||||||
endpointWebhookTest: 'webhook-test',
|
endpointWebhookTest: 'webhook-test',
|
||||||
|
|
||||||
|
// How n8n can be reached (Editor & REST-API)
|
||||||
host: 'localhost',
|
host: 'localhost',
|
||||||
port: 5678,
|
port: 5678,
|
||||||
protocol: 'http',
|
protocol: 'http',
|
||||||
|
@ -17,6 +22,11 @@ module.exports = {
|
||||||
},
|
},
|
||||||
|
|
||||||
executions: {
|
executions: {
|
||||||
|
// If the executions of workflows which got started via the editor
|
||||||
|
// should be saved. By default they will not be saved as this runs
|
||||||
|
// are normally only for testing and debugging. This setting can
|
||||||
|
// also be overwritten on a per workflow basis in the workflow settings
|
||||||
|
// in the editor.
|
||||||
saveManualRuns: false,
|
saveManualRuns: false,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -26,5 +36,9 @@ module.exports = {
|
||||||
errorTriggerType: 'n8n-nodes-base.errorTrigger',
|
errorTriggerType: 'n8n-nodes-base.errorTrigger',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// The timezone to use. Is important for nodes like "Cron" which start the
|
||||||
|
// workflow automatically at a specified time. This setting can also be
|
||||||
|
// overwritten on a per worfklow basis in the workflow settings in the
|
||||||
|
// editor.
|
||||||
timezone: 'America/New_York',
|
timezone: 'America/New_York',
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue