Set up Mushroom development environment
mainTo develop Mushroom locally, you can run a Home Assistant demo instance and a development server.
1. Run Home Assistant Demo (Docker):
npm run start:hassFor Windows Command Prompt users: npm run start:hass-cmd.
Once started, access it at http://localhost:8123.
2. Run Development Server: In a separate terminal, install dependencies and start the server:
npm install
npm startThe server will start on port 4000.
3. Build the distribution file:
To generate the mushroom.js file in the dist folder:
npm run build