Frontend for the is-a.software platform, built with Next.js. The backend lives in a separate repository: is-a-software/backend-new.
- Node.js 18+ or Bun
- Open the frontend/ folder.
- Install dependencies:
bun installIf you prefer npm:
npm install- Create a local environment file named .env.local in the frontend/ folder with at least:
NEXT_PUBLIC_API_URL=http://localhost:8080
NEXT_PUBLIC_API_TIMEOUT_MS=20000- Start the development server:
bun devIf you are using npm:
npm run devThe frontend runs on http://localhost:3000 by default.