vue.js and Vuetify Web application for accessing and controlling a Pixelli LED matrix.
# yarn
yarn
# npm
npm install
There are a number of modes available for development. At the moment, those modes control the endpoint used for API calls.
dev
- The default Vite development setup. API calls will not function.api-json-serve
- Vite development mode that uses vite-plugin-simple-json-server to serve up static JSON responses for API calls. These calls are serviced by the standard Vite server listening onhttp://localhost:3000
.api-pixelli
- Vite development mode that references the API hosted athttp://pixelli.local
api-pixelli_mock
- Vite development mode that references the API hosted athttp://pixelli_mock.local
In addition, there are also Visual Studio Code launch configurations that will invoke these startup modes and launch a Chrome browser for developing in the associated mode.
# yarn
yarn build
# npm
npm run build
# yarn
yarn lint
# npm
npm run lint