Skip to content

Latest commit

 

History

History
66 lines (43 loc) · 2.83 KB

DEVELOPER.md

File metadata and controls

66 lines (43 loc) · 2.83 KB

Developer

This document describes how to set up your development environment to build and develop mango-ui.

Prerequisite Software

Before you can run mango-ui you must install and configure the following products on your development machine:

Code Editor

The recommended editor for developing mango-ui is VS Code with the following settings and extensions. You can easily use another editor of your choice as long as you can replicate the code formatting settings.

Settings.json

Your editor should follow the same settings found in .vscode/settings.json.

Extensions

  1. Prettier - Code formatter
  2. ESLint
  3. Stylelint
  4. EditorConfig for VS Code
  5. Vitest
  6. Path Intellisense
  7. Code Spell Checker

Getting the Sources

Clone the mango-ui repository:

cd mango-ui

Installing NPM Modules

Install the JavaScript modules needed to build mango-ui:

npm install

Start Development Server

Run npm run dev for a dev server. Navigate to http://localhost:5173/. The app will automatically reload if you change any of the source files.

Building For Production

Run npm run build to build a production version of the project. The build artifacts will be stored in the build/ directory.