haoshoku 2.0.2 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Dashy Service
|
|
2
|
+
|
|
3
|
+
This directory contains the Docker setup for [Dashy](https://dashy.to/), a self-hosted personal dashboard.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
- Docker
|
|
8
|
+
- Docker Compose
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
1. Start the service:
|
|
13
|
+
```bash
|
|
14
|
+
docker compose up -d
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
2. Access the dashboard at `http://localhost:8080`.
|
|
18
|
+
|
|
19
|
+
## Configuration
|
|
20
|
+
|
|
21
|
+
Edit `conf.yml` to customize your dashboard. See [Dashy Documentation](https://dashy.to/docs/configuring) for more details.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
pageTitle: My Dashboard
|
|
2
|
+
sections:
|
|
3
|
+
- name: Getting Started
|
|
4
|
+
items:
|
|
5
|
+
- title: GitHub
|
|
6
|
+
description: Dashy source code
|
|
7
|
+
url: https://github.com/Lissy93/dashy
|
|
8
|
+
icon: fab fa-github
|
|
9
|
+
- title: Documentation
|
|
10
|
+
description: Dashy docs
|
|
11
|
+
url: https://dashy.to/docs
|
|
12
|
+
icon: fas fa-book
|