Skip to content

Latest commit

 

History

History
61 lines (41 loc) · 814 Bytes

INSTALL.md

File metadata and controls

61 lines (41 loc) · 814 Bytes

Installation Guide

Prerequisites

  • Node.js (v18 or higher)
  • npm (v9 or higher)
  • Git (optional, for cloning)

Installation Steps

1. Clone the Repository (or download the source code)

git clone https://github.com/EPFL-ENAC/resslab-astra_82001.git
cd resslab-astra_82001

2. Install Dependencies

npm install

3. Run the Development Server

npm run dev

4. Build the Project

npm run build

5. Run Tests

npm run test

6. Lint and Format Code

npm run lint
npm run format

7. Docker Setup (Optional)

Build Docker Image

docker build -t nginx-vue-app .

Run Docker Container

docker run -p 8080:80 nginx-vue-app