Bienvenue sur le site officiel de notre chaine Youtube RV SEO

Soutenez-nous gratuitement :
Abonnez-vous et activez la cloche pour avoir les dernières vidéos avant tout le monde!
Pensez aussi à mettre un pouce et un commentaire sous les vidéos qui vous ont été utiles

N8N installation sur ordinateur PC Windows 10

Sep 23, 2023 | Informatique et Internet | 0 commentaires

installation de N8N sur PC ordinateur Windows 10 automation gratuit illimite

Install n8n – Automatisation de flux de travail open source – sur Windows 10

Qu’est-ce que n8n ?

n8n est un outil d’automatisation de flux de travail extensible. Avec un modèle de distribution en code équitable, n8n aura toujours un code source visible, sera disponible en auto-hébergement, et vous permettra d’ajouter vos propres fonctions personnalisées, logiques et applications. L’approche basée sur les nœuds de n8n le rend très polyvalent, vous permettant de connecter n’importe quoi à n’importe quoi. – https://github.com/n8n-io/n8n

N8N nodes explication installation windows 10 gratuit

Installation de n8n

Prérequis: Windows 10 avec un compte administrateur

  1. # install n8n
    npm install n8n –location=global
    # test run n8n
    npx n8n

  2. Program/script: « %ProgramFiles%\nodejs\npx.cmd »
    Add arguments: n8n

By default, the n8n database and configuration file live in the user’s profile .n8n folder (ie C:\Users\i12bretro\.n8n). To utilize a database other than SQLite, setup the database and authentication, then create a .bat file like the example below and call the .bat file as the action of the scheduled task.

SET DB_TYPE=mysqldb

SET DB_MYSQLDB_DATABASE=n8n

SET DB_MYSQLDB_HOST=localhost

SET DB_MYSQLDB_USER=n8n_rw

SET DB_MYSQLDB_PASSWORD=n8n_N8N!

SET GENERIC_TIMEZONE=America/New_York

« %programfiles%\nodejs\npx.cmd » n8n

Source: https://docs.n8n.io/hosting/installation/npm/