mirror of
https://github.com/Dvorinka/beszel.git
synced 2026-07-29 07:13:48 +00:00
Introduces the ability for registered users to trigger Beszel container updates directly from the web interface. - Added `app_update` logic to the hub to pull the latest image from GHCR and recreate the container. - Implemented `/api/beszel/update` and `/api/beszel/update/apply` endpoints. - Added a new `AppUpdatePanel` in the settings UI to check for and apply updates. - Added update notifications in the navbar and settings. - Updated `docker-compose.yml` and `README.md` to include the required Docker socket mount for update functionality. - Added a new public status page route that bypasses authentication. - Refactored several TypeScript interfaces to replace `any` with `unknown` or specific types for better type safety. - Updated localization files to support new update-related strings.
54 lines
661 B
Plaintext
54 lines
661 B
Plaintext
# IDE
|
|
.idea
|
|
.idea.md
|
|
.vscode
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
*.exe
|
|
beszel-agent
|
|
beszel-server
|
|
beszel-test
|
|
internal/cmd/hub/hub
|
|
internal/cmd/agent/agent
|
|
agent.test
|
|
agent/lhm/obj
|
|
agent/lhm/bin
|
|
dockerfile_agent_dev
|
|
|
|
# Data directories
|
|
pb_data/
|
|
data/
|
|
temp/
|
|
beszel_data/
|
|
beszel_data*
|
|
test_output/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
.swc
|
|
|
|
# Generated locales
|
|
internal/site/src/locales/**/*.ts
|
|
|
|
# Debug
|
|
*.bak
|
|
__debug_*
|
|
*timestamp*
|
|
.playwright-cli/
|
|
|
|
# Reference code (external projects)
|
|
reference/
|
|
|
|
# Graphify output - only keep json, md, html in root
|
|
graphify-out/*/
|
|
graphify-out/*.svg
|
|
!graphify-out/*.json
|
|
!graphify-out/*.md
|
|
!graphify-out/*.html
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|