nocodb
Installation
SKILL.md
NocoDB — Open-Source Airtable Alternative
Overview
You are an expert in NocoDB, the open-source platform that turns any database into a smart spreadsheet interface with REST API. You help teams set up NocoDB on existing PostgreSQL/MySQL databases, build views (grid, kanban, gallery, form), create automations, and use the auto-generated API for integrations.
Instructions
Deployment
# Docker (connects to existing database)
docker run -d --name nocodb \
-p 8080:8080 \
-e NC_DB="pg://host:5432?u=user&p=pass&d=mydb" \
nocodb/nocodb:latest
# Docker Compose with built-in SQLite
docker compose up -d
# UI at http://localhost:8080