Skip to content

Latest commit

 

History

History
61 lines (41 loc) · 1.14 KB

README.md

File metadata and controls

61 lines (41 loc) · 1.14 KB

eodash Configuration and Deployment Template

This is an instance template for @eodash/eodash. Check Github's guide on how to create a repository from a template

Prerequisites

  • Node v20.15.1 or higher

Get Started

Install all the required dependecies:

npm run install

Run the dev server:

npm run dev

To compile and minify for production:

npm run build

To preview the compiled production files :

npm run preview

To compile and minify as a web component library:

npm run build -- --lib

Format using prettier:

npm run format

Run linter:

npm run lint

Folder Structure

.
├── public            # statically served files
├── src               # Client source code that hosts the microfrontends and renders the dashboard
│    ├── widgets      # Contains custom defined internal widgets
│    └─  main.js      # eodash main entry point
│
└── README.md