-
Notifications
You must be signed in to change notification settings - Fork 4
Getting Started
Welcome to the PIQUE Visualizer! This guide will walk you through the steps to get the visualizer up and running on your machine.
Before you begin, ensure you have the following installed on your system:
- Node.js: PIQUE Visualizer is a Node.js application. You need Node.js installed to run the server and the application itself. Download Node.js
-
npm (Node Package Manager): npm comes with Node.js, and it's used to manage the dependencies of the application. Ensure it's installed by running
npm -vin your terminal.
Follow these steps to install the PIQUE Visualizer:
-
Clone the Repository First, clone the PIQUE Visualizer repository to your local machine using Git:
git clone https://github.com/MSUSEL/msusel-pique-visualizer.git
-
Navigate to the Project Directory After cloning, change into the project directory:
cd msusel-pique-visualizer -
Install Dependencies Inside the project directory, install the necessary dependencies using npm:
npm install
This command reads the
package.jsonfile and installs all the dependencies listed there.
To start the PIQUE Visualizer, use the following npm command:
npm run devThis command starts the development server and usually opens the visualizer in your default web browser. If it doesn't open automatically, you can manually navigate to the following address in your browser:
http://localhost:5173
For a more detailed component view or for development purposes, you can use Storybook:
npm run storybookStorybook provides a sandbox to build UI components in isolation, making it easier to develop and test components.
Now that you've successfully set up and started the PIQUE Visualizer, you're ready to begin visualizing your software quality results. Explore the Using the Visualizer section next for detailed instructions on how to use the tool's features.