1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-11 13:15:28 +03:00
n8n/docs/setup.md
2020-04-21 16:03:19 +02:00

902 B

Setup

Installation

To install n8n globally:

npm install n8n -g

Start

After the installation n8n can be started by simply typing in:

n8n
# or
n8n start

Start with tunnel

!> WARNING: This is only meant for local development and testing. It should not be used in production!

To be able to use webhooks for trigger nodes of external services like GitHub, n8n has to be reachable from the web. To make that easy, n8n has a special tunnel service, which redirects requests from our servers to your local n8n instance (uses this code: https://github.com/localtunnel/localtunnel).

To use it, simply start n8n with --tunnel

n8n start --tunnel

In case you run into issues, check out the troubleshooting page or ask for help in the community forum.