Skip to content

Instantly share code, notes, and snippets.

View alnutile's full-sized avatar

Alfred Nutile alnutile

View GitHub Profile
@alnutile
alnutile / email.json
Created September 25, 2025 19:16
Switch Node N8N video is here https://youtu.be/UkOTBoxWCxg
{
"nodes": [
{
"parameters": {
"options": {}
},
"type": "n8n-nodes-base.emailReadImap",
"typeVersion": 2.1,
"position": [
-336,
@alnutile
alnutile / workflow.json
Created September 19, 2025 16:45
Code Review with N8N and GitHub see the video https://youtu.be/x7JebstIZHs
{
"nodes": [
{
"parameters": {},
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
-848,
-544
],
@alnutile
alnutile / workflow.json
Created September 18, 2025 12:20
See the video here on N8N and Files https://youtu.be/qwm59V1SA_Q
{
"nodes": [
{
"parameters": {
"options": {}
},
"type": "n8n-nodes-base.extractFromFile",
"typeVersion": 1,
"position": [
16,
{
"nodes": [
{
"parameters": {
"options": {
"systemMessage": "You have this data from the Monday.com task system. Use it"
}
},
"type": "@n8n/n8n-nodes-langchain.agent",
"typeVersion": 2.2,
services:
supabase-kong:
image: 'kong:2.8.1'
entrypoint: 'bash -c ''eval "echo \"$$(cat ~/temp.yml)\"" > ~/kong.yml && /docker-entrypoint.sh kong docker-start'''
depends_on:
supabase-analytics:
condition: service_healthy
environment:
- SERVICE_FQDN_SUPABASEKONG_8000
- 'KONG_PORT_MAPS=443:8000'
https://www.youtube.com/@AlfredNutile
https://DailyAi.Studio
https://bit.ly/m/alnutile
@alnutile
alnutile / Alfred Nutile
Last active March 13, 2025 20:16
Alfred Nutile
____ _ _ _ ___ ____ _ _ _
| _ \ __ _ (_)| | _ _ / \ |_ _| / ___|| |_ _ _ ___ | | (_) ___
| | | | / _` | | || | | | | | / _ \ | | \___ \| __|| | | | / _ \| | | | / _ \
| |_| || (_| | | || | | |_| | / ___ \ | | ___) | |_ | |_| || (_) | | | || (_) |
|____/ \__,_| |_||_| \__, |/_/ \_\ |___| |____/ \__| \__,_| \___/|_| |_| \___/
|___/
$ _
Alfred Nutile @ DailyAi.Studio
Learn more at https://www.youtube.com/@AlfredNutile
@alnutile
alnutile / supabase
Last active March 13, 2025 14:21
Getting supabase setup with flowise
-- Enable the pgvector extension to work with embedding vectors
create extension vector;
-- Create a table to store your documents
create table documents (
id text primary key, -- CHANGE TO TEXT
content text,
metadata jsonb,
embedding vector(1536)
);
@alnutile
alnutile / Dockerfile
Created March 1, 2025 19:05
Might be a better way to host lovable on coolfiy
# Build stage
FROM node:20-alpine as builder
WORKDIR /app
# Copy package files
COPY package*.json ./
COPY bun.lockb ./
# Install dependencies
@alnutile
alnutile / claude_install_notes.md
Created January 1, 2025 07:11
All the install notes from Claude

N8N Running on Main Server

Here's a comprehensive README for setting up n8n on Ubuntu with Nginx:

n8n Server Setup Guide

Prerequisites

  • Ubuntu Server
  • Node.js >= 18.17