GUI Installation - capstone-hermes/hermes-fullstack GitHub Wiki

⚙️ Installation Guide – Hermes GUI

This guide walks you through the steps required to install and run the Hermes GUI locally.


✅ Prerequisites

Ensure the following are installed on your system:

  • Node.js (version 18 or higher)
  • npm (comes with Node.js)

📥 Installation Steps

  1. Clone the Repository
git clone https://github.com/yourusername/hermes-fullstack.git
cd hermes-fullstack/gui
  1. Install Dependencies
npm install
  1. Run in Development Mode
npm run dev
  1. Access the GUI

Open your browser and go to:

http://localhost:5173

📦 Build for Production

To create a production-ready build:

npm run build

You can then preview it locally with:

npm run preview