What is Dashy?
[Dashy is] a self-hostable personal dashboard built for you. Includes status-checking, widgets, themes, icon packs, a UI editor and tons more! -https://github.com/Lissy93/dashy
Installing Dashy
- Log into the Windows device
- Download the latest Dashy release Download
- Download NodeJS v18 Download
- Install NodeJS, accepting all the defaults
- Extract the downloaded Dashy files
- Rename the extracted folder dashy
- Cut the dashy folder to a location it can safely run from, C:\apps\dashy in this example
- Click on the Start menu > type cmd > Right click on Command Prompt > Run as administrator
- Run the following commands in the Command Prompt window
# change directory to dashy, C:\apps\dashy in this example
cd c:\apps\dashy
# update npm
npm install -g npm
# install yarn
npm install -g yarn
# install win-node-env
npm install -g win-node-env
# fix dependencies
yarn install --ignore-engines
# create a backup .env file
copy .\.env .\.env.orig
# build dashy
yarn build
# run dashy
yarn start - Open a web browser and navigate to http://DNSorIP:4000
- Welcome to Dashy
Run Dashy on System Startup (Optional, but recommended)
- Press CTRL + C to kill the running Dashy process
- Open a text editor and paste the following
:: Start dashy server
cd /D "%~dp0"
start "dashy" /b npm start - Save the file as startup.bat in the dashy directory, C:\apps\dashy in this example
- Click on the Start Button > Type task > Launch Task Scheduler
- Right click the Task Scheduler Library folder in the left pane > Create Basic Task...
- Set the name to Dashy and optionally set a Description > Click Next
- For the Trigger, select When the computer starts > Click Next
- For the Action, select Start a program > Click Next
- Complete the form fields as follows:
Program/script: "C:\apps\dashy\startup.bat"
Add arguments:
Start in: - Click Next
- Check the Open the Properties dialog checkbox > Click Finish
- In the Properties dialog, click the Change User or Group... button
- Type System in the Object name field > Click OK
- Check the Run with highest privileges box
- Click OK to create the scheduled task
- Right click the Dashy task > Run
- Refresh the open web browser to verify Dashy is now running from the scheduled task