Files
cutroom/.gitignore
Chora ce684b70c0 feat: initial project scaffold
- Next.js 14 with App Router
- Prisma schema for Pipeline and Stage models
- Pipeline state machine (manager.ts)
- API routes: health, pipelines CRUD, start
- Landing page with pipeline visualization
- Dark theme with Tailwind CSS
- Environment setup with .env.example
2026-02-01 20:07:05 -06:00

38 lines
309 B
Plaintext

# Dependencies
node_modules/
.pnpm-store/
# Next.js
.next/
out/
# Prisma
prisma/migrations/
# Environment
.env
.env.local
.env*.local
# IDE
.idea/
.vscode/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Build
*.tsbuildinfo
next-env.d.ts
# Vercel
.vercel
# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*