mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 21:02:18 +08:00
feat:添加dashy到列表
This commit is contained in:
parent
70ff01a264
commit
a33c16cefc
2
apps/dashy/3.0.0/.env.sample
Normal file
2
apps/dashy/3.0.0/.env.sample
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
CONTAINER_NAME="dashy"
|
||||||
|
PANEL_APP_PORT_HTTP="40219"
|
10
apps/dashy/3.0.0/data.yml
Normal file
10
apps/dashy/3.0.0/data.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: 40209
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
0
apps/dashy/3.0.0/data/item-icons/.gitkeep
Normal file
0
apps/dashy/3.0.0/data/item-icons/.gitkeep
Normal file
47
apps/dashy/3.0.0/data/user-data/conf.yml
Normal file
47
apps/dashy/3.0.0/data/user-data/conf.yml
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
---
|
||||||
|
# Page meta info, like heading, footer text and nav links
|
||||||
|
pageInfo:
|
||||||
|
title: Dashy
|
||||||
|
description: Welcome to your new dashboard!
|
||||||
|
navLinks:
|
||||||
|
- title: GitHub
|
||||||
|
path: https://github.com/Lissy93/dashy
|
||||||
|
- title: Documentation
|
||||||
|
path: https://dashy.to/docs
|
||||||
|
|
||||||
|
# Optional app settings and configuration
|
||||||
|
appConfig:
|
||||||
|
theme: colorful
|
||||||
|
|
||||||
|
# Main content - An array of sections, each containing an array of items
|
||||||
|
sections:
|
||||||
|
- name: Getting Started
|
||||||
|
icon: fas fa-rocket
|
||||||
|
items:
|
||||||
|
- title: Dashy Live
|
||||||
|
description: Development a project management links for Dashy
|
||||||
|
icon: https://i.ibb.co/qWWpD0v/astro-dab-128.png
|
||||||
|
url: https://live.dashy.to/
|
||||||
|
target: newtab
|
||||||
|
- title: GitHub
|
||||||
|
description: Source Code, Issues and Pull Requests
|
||||||
|
url: https://github.com/lissy93/dashy
|
||||||
|
icon: favicon
|
||||||
|
- title: Docs
|
||||||
|
description: Configuring & Usage Documentation
|
||||||
|
provider: Dashy.to
|
||||||
|
icon: far fa-book
|
||||||
|
url: https://dashy.to/docs
|
||||||
|
- title: Showcase
|
||||||
|
description: See how others are using Dashy
|
||||||
|
url: https://github.com/Lissy93/dashy/blob/master/docs/showcase.md
|
||||||
|
icon: far fa-grin-hearts
|
||||||
|
- title: Config Guide
|
||||||
|
description: See full list of configuration options
|
||||||
|
url: https://github.com/Lissy93/dashy/blob/master/docs/configuring.md
|
||||||
|
icon: fas fa-wrench
|
||||||
|
- title: Support
|
||||||
|
description: Get help with Dashy, raise a bug, or get in contact
|
||||||
|
url: https://github.com/Lissy93/dashy/blob/master/.github/SUPPORT.md
|
||||||
|
icon: far fa-hands-helping
|
||||||
|
|
29
apps/dashy/3.0.0/docker-compose.yml
Normal file
29
apps/dashy/3.0.0/docker-compose.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
dashy:
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:8080"
|
||||||
|
volumes:
|
||||||
|
- ./data/user-data/conf.yml:/app/user-data/conf.yml
|
||||||
|
- ./data/item-icons:/app/user-data/item-icons
|
||||||
|
environment:
|
||||||
|
- NODE_ENV=production
|
||||||
|
- UID=1000
|
||||||
|
- GID=1000
|
||||||
|
healthcheck:
|
||||||
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
||||||
|
interval: 1m30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 40s
|
||||||
|
image: lissy93/dashy:3.0.0
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
3
apps/dashy/3.0.0/scripts/init.sh
Normal file
3
apps/dashy/3.0.0/scripts/init.sh
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
chown -R 1000:1000 data
|
32
apps/dashy/README.md
Normal file
32
apps/dashy/README.md
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
<h1 align="center">Dashy</h1>
|
||||||
|
<p align="center">
|
||||||
|
<i>Dashy helps you organize your self-hosted services by making them accessible from a single place</i>
|
||||||
|
<br/>
|
||||||
|
<img width="120" src="https://i.ibb.co/yhbt6CY/dashy.png" />
|
||||||
|
<br/>
|
||||||
|
<b><a href="https://github.com/Lissy93/dashy/blob/master/docs/showcase.md">User Showcase</a></b> | <b><a href="https://demo.dashy.to">Live Demo</a></b> | <b><a href="https://github.com/Lissy93/dashy/blob/master/docs/quick-start.md">Getting Started</a></b> | <b><a href="https://dashy.to/docs">Documentation</a></b> | <b><a href="https://github.com/Lissy93/dashy">GitHub</a></b>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
## Features 🌈
|
||||||
|
- 📃 Support for multiple pages
|
||||||
|
- 🚦 Real-time status monitoring for each of your apps/links
|
||||||
|
- 📊 Use widgets to display info and dynamic content from self-hosted services
|
||||||
|
- 🔎 Instant search by name, domain, or tags + customizable hotkeys & keyboard shortcuts
|
||||||
|
- 🎨 Many built-in color themes, with UI color editor and support for custom CSS
|
||||||
|
- 🧸 Many icon options - Font-Awesome, homelab icons, auto-fetching Favicon, images, emojis, etc.
|
||||||
|
- 💂 Optional authentication with multi-user access, configurable privileges, and SSO support
|
||||||
|
- 🌎 Multi-language support, with 10+ human-translated languages, and more on the way
|
||||||
|
- ☁ Optional, encrypted, free off-site cloud backup and restore feature available
|
||||||
|
- 💼 A workspace view, for easily switching between multiple apps simultaneously
|
||||||
|
- 🛩️ A minimal view, for use as a fast-loading browser Startpage
|
||||||
|
- 🖱️ Choose app launch methods: new tab, same tab, clipboard, pop-up modal, or open in workspace view
|
||||||
|
- 📏 Customizable layout, sizes, text, component visibility, sort order, behavior, etc.
|
||||||
|
- 🖼️ Options for a full-screen background image, custom nav-bar links, HTML footer, title, etc.
|
||||||
|
- 🚀 Easy to setup with Docker, or on bare metal, or with 1-Click cloud deployment
|
||||||
|
- ⚙️ Easy single-file YAML-based configuration, and option to configure app through the UI
|
||||||
|
- ✨ Under active development with improvements and new features added regularly
|
||||||
|
- 🤏 Small bundle size, fully responsive UI, and PWA for basic offline access
|
||||||
|
- 🆓 100% free and open-source
|
||||||
|
- 🔐 Strong focus on privacy
|
||||||
|
- 🌈 And loads more...
|
19
apps/dashy/data.yml
Normal file
19
apps/dashy/data.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Dashy
|
||||||
|
tags:
|
||||||
|
- 建站
|
||||||
|
title: 专为您打造的可自行托管的个人仪表板
|
||||||
|
description: 专为您打造的可自行托管的个人仪表板
|
||||||
|
additionalProperties:
|
||||||
|
key: dashy
|
||||||
|
name: Dashy
|
||||||
|
tags:
|
||||||
|
- WebSite
|
||||||
|
shortDescZh: 专为您打造的可自行托管的个人仪表板
|
||||||
|
shortDescEn: A self-hostable personal dashboard built for you
|
||||||
|
type: website
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
recommend: 0
|
||||||
|
website: https://dashy.to
|
||||||
|
github: https://github.com/Lissy93/dashy
|
||||||
|
document: https://dashy.to/docs
|
2
apps/dashy/latest/.env.sample
Normal file
2
apps/dashy/latest/.env.sample
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
CONTAINER_NAME="dashy"
|
||||||
|
PANEL_APP_PORT_HTTP="40219"
|
10
apps/dashy/latest/data.yml
Normal file
10
apps/dashy/latest/data.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: 40209
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
0
apps/dashy/latest/data/item-icons/.gitkeep
Normal file
0
apps/dashy/latest/data/item-icons/.gitkeep
Normal file
47
apps/dashy/latest/data/user-data/conf.yml
Normal file
47
apps/dashy/latest/data/user-data/conf.yml
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
---
|
||||||
|
# Page meta info, like heading, footer text and nav links
|
||||||
|
pageInfo:
|
||||||
|
title: Dashy
|
||||||
|
description: Welcome to your new dashboard!
|
||||||
|
navLinks:
|
||||||
|
- title: GitHub
|
||||||
|
path: https://github.com/Lissy93/dashy
|
||||||
|
- title: Documentation
|
||||||
|
path: https://dashy.to/docs
|
||||||
|
|
||||||
|
# Optional app settings and configuration
|
||||||
|
appConfig:
|
||||||
|
theme: colorful
|
||||||
|
|
||||||
|
# Main content - An array of sections, each containing an array of items
|
||||||
|
sections:
|
||||||
|
- name: Getting Started
|
||||||
|
icon: fas fa-rocket
|
||||||
|
items:
|
||||||
|
- title: Dashy Live
|
||||||
|
description: Development a project management links for Dashy
|
||||||
|
icon: https://i.ibb.co/qWWpD0v/astro-dab-128.png
|
||||||
|
url: https://live.dashy.to/
|
||||||
|
target: newtab
|
||||||
|
- title: GitHub
|
||||||
|
description: Source Code, Issues and Pull Requests
|
||||||
|
url: https://github.com/lissy93/dashy
|
||||||
|
icon: favicon
|
||||||
|
- title: Docs
|
||||||
|
description: Configuring & Usage Documentation
|
||||||
|
provider: Dashy.to
|
||||||
|
icon: far fa-book
|
||||||
|
url: https://dashy.to/docs
|
||||||
|
- title: Showcase
|
||||||
|
description: See how others are using Dashy
|
||||||
|
url: https://github.com/Lissy93/dashy/blob/master/docs/showcase.md
|
||||||
|
icon: far fa-grin-hearts
|
||||||
|
- title: Config Guide
|
||||||
|
description: See full list of configuration options
|
||||||
|
url: https://github.com/Lissy93/dashy/blob/master/docs/configuring.md
|
||||||
|
icon: fas fa-wrench
|
||||||
|
- title: Support
|
||||||
|
description: Get help with Dashy, raise a bug, or get in contact
|
||||||
|
url: https://github.com/Lissy93/dashy/blob/master/.github/SUPPORT.md
|
||||||
|
icon: far fa-hands-helping
|
||||||
|
|
29
apps/dashy/latest/docker-compose.yml
Normal file
29
apps/dashy/latest/docker-compose.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
dashy:
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:8080"
|
||||||
|
volumes:
|
||||||
|
- ./data/user-data/conf.yml:/app/user-data/conf.yml
|
||||||
|
- ./data/item-icons:/app/user-data/item-icons
|
||||||
|
environment:
|
||||||
|
- NODE_ENV=production
|
||||||
|
- UID=1000
|
||||||
|
- GID=1000
|
||||||
|
healthcheck:
|
||||||
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
||||||
|
interval: 1m30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 40s
|
||||||
|
image: lissy93/dashy:latest
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
3
apps/dashy/latest/scripts/init.sh
Normal file
3
apps/dashy/latest/scripts/init.sh
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
chown -R 1000:1000 data
|
BIN
apps/dashy/logo.png
Normal file
BIN
apps/dashy/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.2 KiB |
Loading…
Reference in New Issue
Block a user