Skip to content

Frontend Installation

This guide walks you through the installation of the XetaSuite React frontend.

  • Node.js 20+ (LTS recommended)
  • npm 10+ or pnpm 9+
  • XetaSuite backend installed and running
  1. Clone the repository

    Terminal window
    git clone https://github.com/xetaio/XetaSuite-React.git
    cd XetaSuite-React
  2. Install dependencies

    Terminal window
    npm install
  3. Configure environment

    Terminal window
    cp .env.example .env

    Edit .env if needed:

    Terminal window
    # Empty to use Vite proxy (development)
    VITE_API_URL=
    # Or direct backend URL (production)
    VITE_API_URL=https://api.xetasuite.com
  4. Start development server

    Terminal window
    npm run dev

    The app will be available at http://localhost:5173