This is an instance template for @eodash/eodash. Check Github's guide on how to create a repository from a template
- Node v20.15.1 or higher
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
.
├── 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