Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 865 Bytes

File metadata and controls

43 lines (32 loc) · 865 Bytes

Getting Started

Prerequisites

Initial Setup

  1. Install dependencies

    cd frontend
    npm install
  2. Start development server

    npm run dev

    The application will be available at http://localhost:3000

  3. Run with backend (recommended)

    npm run dev:all

    This starts both the backend and frontend servers concurrently.

Configuration

Environment Variables

Nuxt environment variables are configured in nuxt.config.ts. Currently, the app uses Nitro route rules for API proxying:

nitro: {
  routeRules: {
    '/db/**': { proxy: 'http://localhost:8000/api/**' }
  }
}

This proxies frontend requests from /db/** to the backend API at /api/**.