From 107926fef5053a478ab2fcd00777ba1d42363da6 Mon Sep 17 00:00:00 2001 From: drjones Date: Wed, 20 May 2026 10:04:19 -0700 Subject: [PATCH] chore: import local project into Gitea --- .cursorignore | 1 + .gitignore | 30 ++++++++++++++++++++++++++++++ README.md | 14 ++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 .cursorignore create mode 100644 .gitignore create mode 100644 README.md diff --git a/.cursorignore b/.cursorignore new file mode 100644 index 0000000..6f9f00f --- /dev/null +++ b/.cursorignore @@ -0,0 +1 @@ +# Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..81d430d --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# OS / tooling +.DS_Store +Thumbs.db + +# Editors +.cursor/ + +# Secrets +.env +.env.* +!.env.example +!.env.template + +# Python +__pycache__/ +*.py[cod] +.venv/ +venv/ + +# Node / frontend +node_modules/ +dist/ + +# Typical embedded / tooling noise +*.log + +# Builds (adjust per subtree if needed) +**/build/.ninja_deps +**/build/.ninja_log + diff --git a/README.md b/README.md new file mode 100644 index 0000000..750cc3e --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# n8n god + +Bare workspace scaffolding (mostly `.cursor` metadata and `.cursorignore`). + +Populate with **`docker-compose.yml`** wiring [n8n](https://n8n.io) + Postgres before publishing. Typical pattern: + +``` +services: + n8n: + image: n8nio/n8n + ... +``` + +Keep exported credentials ZIPs (`*.credential.json`, `.env`) out of Git; add them to `.gitignore` locally.