Development, begins together.
Banner alanı
IFM Sensor

🧠 n8n - Automation Platform

Semih Asil

Industry Valley
In this thread, I will introduce you to n8n, an open-source, powerful, and flexible automation tool. If you've used tools like Zapier or Make.com but are looking for a more free and unlimited solution, n8n is perfect for you!



🧠 What is n8n?​


  • An open-source automation tool
  • Can be self-hosted on your own server
  • Unlimited workflows and integrations
  • Visual interface for creating scenarios without coding knowledge
  • Over 350 pre-built integrations (Slack, Telegram, Email, MySQL, Webhook, HTTP Request, etc.)



🛠️ Installation with Docker​


Bash:
mkdir n8n
cd n8n
nano docker-compose.yml

Its content should be as follows:

YAML:
version: "3"
services:
  n8n:
    image: n8nio/n8n
    ports:
      - "5678:5678"
    environment:
      - N8N_BASIC_AUTH_ACTIVE=true
      - N8N_BASIC_AUTH_USER=admin
      - N8N_BASIC_AUTH_PASSWORD=123456
      - TZ=Europe/Istanbul
    volumes:
      - ~/.n8n:/home/node/.n8n

Install:
YAML:
docker compose up -d

👉 Access from browser: http://localhost:5678



💡 What Can I Do?​


  • Send a notification to Telegram when a form is filled
  • Get data from an API, write to CSV, and send via email
  • Receive sensor data and save it to a database
  • Create a Slack notification when an order arrives on your e-commerce site



🧪 Example: Flow to Send a Message to Telegram​


  1. Webhook node → sends data from external system
  2. Set node → message format is defined
  3. Telegram node → message is sent



🌍 Resources​





🎯 Over to You​


If anyone on the forum is using it, could you share your scenarios?
I can also share example JSON files if you'd like.
 
Back
Top