- 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
38 lines
309 B
Plaintext
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*
|