This is a simple web app that shows a summary of your server's hardware and software.
- Clone the repository
- Creates a
.env
file with the following content:
# For monitoring server using grafana or something similar
PUBLIC_STATS_URL=https://api.server.com/stats
- Create a '/data/apps.json' file with the following content:
[
{
"title": "My application",
"description": "My application description",
// Should be a simple-icons or carbon icon
"icon": "icon",
"tags": ["Apps", "Tags"],
"url": "https://myapp.com"
}
]
- Run
npm install
- Run
npm run dev