📌 Goal
By the end of this module, you'll understand what automation is (without any confusing tech talk!) and create your very first n8n workflow.
🛠 Nodes You'll Learn
- Manual Trigger: The starting point that kicks off your workflow when you click a button
- Set: A simple but powerful node that lets you create and store information
🎯 Practice Task
Create a simple workflow that says "Hello, [Your Name]! 🎉" when you click a button.
📝 Step-by-Step Guide
Step 1: Getting Started with n8n
First, let's open n8n and take a quick look around:
- Log into your n8n account (your instructor will provide access details)
- You'll see the main dashboard - this is your command center for all automations
- Click the big "Create Workflow" button to start a new project
- Give your workflow a name like "My First Automation" by clicking on "Untitled" at the top and typing your new title
Step 2: Adding Your First Node - The Manual Trigger
Every workflow needs a starting point - something that tells it "Hey, it's time to run!"
- In the empty workflow area, you'll see a "+" button - click it
- A panel will open showing different nodes (think of these as building blocks)
- Type "Manual" in the search box
- Click on "Manual Trigger" from the results
- Ta-da! You've added your first node to the workflow
The Manual Trigger is like a big friendly button that says "Start!" When you click it, your workflow will run.
Step 3: Adding Your Second Node - The Set Node
Now let's add a node that will create your personalized greeting:
- Click on the Manual Trigger node you just added
- You'll see a "+" button appear to the right - click it
- Search for "Set" in the search box
- Click on "Set" from the results
- You'll see the Set node appear, connected to your Manual Trigger
Step 4: Customizing Your Message
Let's make the Set node display your personalized greeting:
- In the Set node settings panel, look for the "Values to Set" section
- Click the "Add Value" button
- For "Name," type
message
(this is like a label for your data) - For "Value," type
Hello, [Your Name]! 🎉
(replace [Your Name] with your actual name) - Click the "Execute Workflow" button at the bottom of the screen
Step 5: See Your Workflow in Action!
Now for the exciting part - running your workflow:
- Look at the "Execution" panel that appears at the bottom
- Click on the Set node in this panel
- You'll see your message appear in the "Output" section
- Congratulations! You've just created and run your first automation! 🎉
💡 Real-Life Analogy
The Domino Effect
Think of a workflow like a row of dominoes. The Manual Trigger is you tapping the first domino with your finger. Once that first domino falls, it automatically knocks down the next one (the Set node), which displays your message. You only had to tap once, and everything else happened automatically!
✅ Self-Check Quiz
1. What does the Manual Trigger node do in a workflow?
Correct Answer: B) It starts your workflow when you click the "Execute Workflow" button
The Manual Trigger is the starting point that requires a manual click to activate. It doesn't run automatically or perform other actions like sending emails or creating messages.
2. In this module, what did the Set node help you create?
Correct Answer: B) A personalized greeting message
The Set node was used to create and store a personalized greeting message with your name in it. It didn't create a timer, connect to another app, or create a spreadsheet.
🚀 Next Steps
💬 Fun Fact
The word "automation" comes from the Greek word "automatos" which means "acting of itself." That's exactly what you're creating - things that happen by themselves after you set them up once!