Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 758 Bytes

File metadata and controls

36 lines (26 loc) · 758 Bytes

Caregiver AI

A full-stack Next.js project with AI-powered caregiver assistance.

Setup

  1. Install dependencies:

    npm install
  2. Configure environment variables in .env.local:

    NEXT_PUBLIC_SUPABASE_URL=your-supabase-url
    NEXT_PUBLIC_SUPABASE_ANON_KEY=your-supabase-anon-key
  3. Run the development server:

    npm run dev

Docker

Build and run the application using Docker Compose:

docker compose -f docker/docker-compose.yml up --build

Structure

  • app/: Next.js App Router (pages, components, API routes)
  • lib/: Business logic, database clients, and utility functions
  • types/: TypeScript interfaces and type definitions
  • docker/: Docker configuration files