My App

Installation

Installation and setup guide for Yuno Demo

Installation

This guide will help you install and configure Yuno Demo in your local environment.

Prerequisites

Before starting, make sure you have installed:

  • Node.js 18.x or higher (recommended: 22.x)
  • npm, pnpm, or bun as package manager
  • Git to clone the repository

Warning: Node.js 22.x is recommended for optimal performance with React Compiler.

Installation Steps

Clone the repository

git clone https://github.com/MrUprizing/demo-yuno.git
cd demo-yuno

Install dependencies

Choose your preferred package manager:

# npm
npm install

# pnpm  
pnpm install

# bun
bun install

Configure environment variables

Crea un archivo .env.local en el directorio apps/website:

# apps/website/.env.local
NEXT_PUBLIC_API_URL=http://localhost:8080

Start the development server

npm run dev

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

Note: For production deployment, check the Configuration guide.

Project Structure

demo-yuno/
├── apps/
│   ├── backend/          # Java Spring Boot Backend
│   └── website/          # Next.js Frontend
├── packages/
│   └── yuno-demo-sdk/    # Shared SDK
└── ...

Next Step

Continue with the Quick Start Guide to learn how to use the application.

On this page