chore: import local project into Gitea

This commit is contained in:
2026-05-20 10:04:19 -07:00
commit 107926fef5
3 changed files with 45 additions and 0 deletions

1
.cursorignore Normal file
View File

@@ -0,0 +1 @@
# Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv)

30
.gitignore vendored Normal file
View File

@@ -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

14
README.md Normal file
View File

@@ -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.