A Next.js (App Router) frontend application that transforms complex goals into clear, actionable sub-tasks using an LLM-powered backend service. The app communicates securely with the backend through a Next.js API proxy route.
- Frontend: Next.js, TypeScript, React Hooks
- Styling: Tailwind CSS
- Backend: FastApi
- DataBase: NeonDB(Postgres hosted instance)
- Node.js and npm or yarn installed
- External goal breakdown backend running and accessible
npm install
# or
yarn install# .env.local
# BACKEND_API_URL=http://localhost:8000
BACKEND_API_URL=
NEON_URL=
GEMINI_API_KEY=Run the project
npm run dev
# or
yarn dev