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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "haoshoku",
3
- "version": "2.0.2",
3
+ "version": "2.1.0",
4
4
  "module": "haoshoku.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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
@@ -0,0 +1,12 @@
1
+ version: '3.8'
2
+ services:
3
+ dashy:
4
+ image: lissy93/dashy:latest
5
+ container_name: dashy
6
+ volumes:
7
+ - ./conf.yml:/app/public/conf.yml
8
+ ports:
9
+ - 8080:80
10
+ restart: unless-stopped
11
+ environment:
12
+ - NODE_ENV=production