Running Homepage Application Dashboard on Linux
i12bretro
#Homepage #Dashboard #Linux
Full steps can be found at https://i12bretro.github.io/tutorials/0886.html
What is Homepage?
[Homepage is] a modern, fully static, fast, secure fully proxied, highly customizable application dashboard with integrations for over 100 services and translations into multiple languages. Easily configured via YAML files or through docker label discovery. - https://github.com/benphelps/homepage
Installing NodeJS
01. Log into the Linux device 02. Run the following commands in a terminal window # add nodejs software repository curl -sL https://deb.nodesource.com/setup_20.x | sudo bash - # install nodejs sudo apt install nodejs -y # test node is working node -v # test npm is working npm -v
Running Homepage
01. Continue with the following commands: # install git sudo apt install git -y # cd back to home cd ~ # clone homepage github repo git clone https://github.com/gethomepage/homepage.git ./homepage # cd into git clone cd homepage # checkout the latest tagged release git checkout "$(git tag --sort=v:refname | tail -n1)" # install dependencies npm install # copy config files cp ./src/skeleton ./config -r # build homepage npm run build # run homepage npm start 02. Open a web browser and navigate to http://DNSorIP:3000 03. Welcome to Homepage Source: https://github.com/gethomepage/homepage?tab=readme-ov-file#with-node
Connect with me and others
★ Discord: https://discord.com/invite/EzenvmSHW8 ★ Reddit: https://reddit.com/r/i12bretro ★ Twitter: https://twitter.com/i12bretro ... https://www.youtube.com/watch?v=RSjjO3QNgK8
13842881 Bytes