{"id":24532799,"url":"https://github.com/dean9703111/n8n-google-sheet-exmaple","last_synced_at":"2026-01-03T05:04:52.532Z","repository":{"id":272446453,"uuid":"916617691","full_name":"dean9703111/n8n-google-sheet-exmaple","owner":"dean9703111","description":"最適合新手的 n8n 教學文件，會先帶你在 local 安裝 n8n，然後認識不同節點（Node）的功能，最後的實戰則是在 Google Sheet 自動建立 SEO 關鍵字矩陣","archived":false,"fork":false,"pushed_at":"2025-01-19T13:59:59.000Z","size":10050,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-22T10:18:17.688Z","etag":null,"topics":["n8n","n8n-nodes","n8n-tutorial","n8n-workflow"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dean9703111.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-14T13:01:28.000Z","updated_at":"2025-01-19T14:00:01.000Z","dependencies_parsed_at":"2025-01-14T14:21:54.869Z","dependency_job_id":"5b57f28d-c7bc-4058-a7e3-ec139d584558","html_url":"https://github.com/dean9703111/n8n-google-sheet-exmaple","commit_stats":null,"previous_names":["dean9703111/n8n-google-sheet-exmaple"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dean9703111%2Fn8n-google-sheet-exmaple","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dean9703111%2Fn8n-google-sheet-exmaple/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dean9703111%2Fn8n-google-sheet-exmaple/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dean9703111%2Fn8n-google-sheet-exmaple/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dean9703111","download_url":"https://codeload.github.com/dean9703111/n8n-google-sheet-exmaple/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243790969,"owners_count":20348387,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["n8n","n8n-nodes","n8n-tutorial","n8n-workflow"],"created_at":"2025-01-22T10:18:23.245Z","updated_at":"2026-01-03T05:04:52.450Z","avatar_url":"https://github.com/dean9703111.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# [n8n 教學]在本地建立能串連不同服務的自動化工具\n\nn8n 是款能把你從重複的例行性任務中，拯救出來的自動化工具。\n\n使用者可以透過視覺化的介面，用拖拉節點、設定參數的方式來建立符合自己需求的工作流。\n\n他有雲端與本地（local）的版本，考量到許多工作流程需要放上私鑰（ex: Google API Key、OpenAI API Key），以及雲端版本至少要付費 20 歐元（限制工作流程執行 2500 次）；所以筆者選擇了本地部署的方案，這篇文章會分享詳細的操作步驟。\n\n## ▋ STEP 1: 安裝 Docker\n\n前往 Docker 官網: https://www.docker.com/\n\n根據自己的作業系統選擇對應的版本下載。\n\n![img](./img/init_n8n/install_docker.png)\n\n## ▋ STEP 2: 使用 docker-compose.yml 安裝 n8n\n\n你可以直接 git clone 筆者的 GitHub 專案，或者建立一個 `n8n` 的資料夾，新增 `docker-compose.yml` 檔案。\n\n```yml\nvolumes:\n  n8n_storage:\n\nservices:\n  n8n:\n    image: n8nio/n8n:latest\n    restart: always\n    ports:\n      - \"127.0.0.1:5678:5678\" # 根據實際需求設定\n    volumes:\n      - n8n_storage:/home/node/.n8n\n```\n\n貼上內容後，在終端機（Terminal）輸入 `docker compose up -d` 即可啟動\n\n![img](./img/init_n8n/docker_compose_up.png)\n\n## ▋ STEP 3: 註冊 n8n 帳號\n\n進入網址: http://127.0.0.1:5678 \n\n如果看到下面的帳號設定畫面就代表你 n8n 安裝成功了！\n\n![img](./img/init_n8n/set_n8n_account.png)\n\n帳號設定完成後，你會看到下面的初始畫面。\n\n![img](./img/init_n8n/n8n_init_page.png)\n\n這邊要特別提醒的是，`你一定要記得自己的 Email 跟 Password`，因為官方 Forgot Password 的功能只是擺飾用的。\n\n![img](./img/init_n8n/n8n_forget_password.png)\n\n到這一步，你就完成 n8n local 環境的初始化了！下一篇文章將會向讀者分享 n8n Node（節點）的使用方法。\n\n\u003e 延伸閱讀:\n\u003e - [[n8n 教學]掌握節點 (Node) 使用情境：Set、Loop Over items、If、Code、HTTP Request、Wait](https://dean-lin.medium.com/e8c804619b57)\n\u003e - [[n8n 教學]在 Google Sheet 自動建立 SEO 關鍵字矩陣](https://dean-lin.medium.com/eeb1e6e2e2ba)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdean9703111%2Fn8n-google-sheet-exmaple","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdean9703111%2Fn8n-google-sheet-exmaple","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdean9703111%2Fn8n-google-sheet-exmaple/lists"}