- 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
19 lines
425 B
JavaScript
19 lines
425 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: 'rgb(9, 9, 11)',
|
|
foreground: 'rgb(250, 250, 250)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('tailwindcss-animate')],
|
|
}
|