ContentCashflow

n8n Automation Blueprint

Our battle-tested workflow to generate, approve, publish and monetize content in ≤2 hours/day

Docker-compatible

AI Content Generation
Uses Mistral 7B via Ollama for high-quality drafts with adjustable creativity parameters

Automated daily content batches using Mistral 7B (locally hosted)

Ollama n8n HTTP Node 500-700 words

Human Quality Gate

Telegram bot sends draft for approval/revision (≤15 mins review)

Telegram Bot Approval Workflow Markdown Formatting

WordPress Auto-Publish

REST API integration with pre-filled SEO meta & Amazon affiliate tags

WP REST API Yoast SEO Amazon AAWP

Social Teaser Distribution

Auto-post snippets to Pinterest & Twitter with UTM tracking

Pinterest API Twitter v2 UTM Builder

Docker-compose.yml Configuration

version: '3'
services:
  n8n:
    image: n8nio/n8n
    restart: unless-stopped
    ports:
      - "5678:5678"
    environment:
      - N8N_BASIC_AUTH_ACTIVE=true
      - N8N_BASIC_AUTH_USER=admin
      - N8N_BASIC_AUTH_PASSWORD=yoursecurepassword
    volumes:
      - n8n_data:/home/node/.n8n
    deploy:
      resources:
        limits:
          cpus: '0.5'
          memory: 512M

  ollama:
    image: ollama/ollama
    ports:
      - "11434:11434"
    volumes:
      - ollama_data:/root/.ollama

volumes:
  n8n_data:
  ollama_data:

Resource-constrained setup for local deployment (runs on 512MB RAM)