This is a Next.js project bootstrapped with create-next-app.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.
This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.
Workflow Builder is a full-stack application for creating and managing dynamic workflows visually. This README provides setup instructions for local development, Docker usage, and deployment.
- Visual workflow builder
- Auth system (NextAuth.js)
- PostgreSQL + Prisma ORM
- CI/CD via GitHub Actions
- Dockerized for production
git clone https://github.com/your-username/workflow-builder.git
cd workflow-builderCreate a .env file in the root directory and add the following:
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/workflow-builder?schema=public
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=your-secret-key-herenpm installnpm run devAccess the app at http://localhost:3000.
docker-compose up db --builddocker-compose up --build- Web App: http://localhost:3000
- PostgreSQL: running on port
5432
This project uses GitHub Actions for CI/CD. On every push to the main branch:
- Linting, testing, and Prisma migration are run
- Future: automatic deploy to production via Docker (e.g., Railway or Render)
npm run testMake sure your PostgreSQL database is running before running tests.
- Next.js
- TypeScript
- Prisma + PostgreSQL
- Tailwind CSS
- Docker
- GitHub Actions
MIT