mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-11-17 19:16:25 +00:00
Update AppImage
This commit is contained in:
@@ -2,50 +2,6 @@
|
||||
|
||||
A modern, responsive dashboard for monitoring Proxmox VE systems built with Next.js and React.
|
||||
|
||||
<p align="center">
|
||||
<img src="AppImage/public/images/proxmenux-logo.png" alt="ProxMenux Monitor Logo" width="200"/>
|
||||
</p>
|
||||
|
||||
## Screenshots
|
||||
|
||||
Get a quick overview of ProxMenux Monitor's main features:
|
||||
|
||||
<p align="center">
|
||||
<img src="AppImage/public/images/onboarding/imagen1.png" alt="Overview Dashboard" width="800"/>
|
||||
<br/>
|
||||
<em>System Overview - Monitor CPU, memory, temperature, and uptime in real-time</em>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="AppImage/public/images/onboarding/imagen2.png" alt="Storage Management" width="800"/>
|
||||
<br/>
|
||||
<em>Storage Management - Visual representation of disk usage and health</em>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="AppImage/public/images/onboarding/imagen3.png" alt="Network Monitoring" width="800"/>
|
||||
<br/>
|
||||
<em>Network Monitoring - Real-time traffic graphs and interface statistics</em>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="AppImage/public/images/onboarding/imagen4.png" alt="Virtual Machines & LXC" width="800"/>
|
||||
<br/>
|
||||
<em>VMs & LXC Containers - Comprehensive view with resource usage and controls</em>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="AppImage/public/images/onboarding/imagen5.png" alt="Hardware Information" width="800"/>
|
||||
<br/>
|
||||
<em>Hardware Information - Detailed specs for CPU, GPU, and PCIe devices</em>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="AppImage/public/images/onboarding/imagen6.png" alt="System Logs" width="800"/>
|
||||
<br/>
|
||||
<em>System Logs - Real-time monitoring with filtering and search</em>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
## Table of Contents
|
||||
@@ -75,6 +31,52 @@ Get a quick overview of ProxMenux Monitor's main features:
|
||||
|
||||
The application runs as a standalone AppImage on your Proxmox server and serves a web interface accessible from any device on your network.
|
||||
|
||||
<p align="center">
|
||||
<img src="public/images/proxmenux-logo.png" alt="ProxMenux Monitor Logo" width="200"/>
|
||||
</p>
|
||||
|
||||
## Screenshots
|
||||
|
||||
Get a quick overview of ProxMenux Monitor's main features:
|
||||
|
||||
<p align="center">
|
||||
<img src="public/images/onboarding/imagen1.png" alt="Overview Dashboard" width="800"/>
|
||||
<br/>
|
||||
<em>System Overview - Monitor CPU, memory, temperature, and uptime in real-time</em>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="public/images/onboarding/imagen2.png" alt="Storage Management" width="800"/>
|
||||
<br/>
|
||||
<em>Storage Management - Visual representation of disk usage and health</em>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="public/images/onboarding/imagen3.png" alt="Network Monitoring" width="800"/>
|
||||
<br/>
|
||||
<em>Network Monitoring - Real-time traffic graphs and interface statistics</em>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="public/images/onboarding/imagen4.png" alt="Virtual Machines & LXC" width="800"/>
|
||||
<br/>
|
||||
<em>VMs & LXC Containers - Comprehensive view with resource usage and controls</em>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="public/images/onboarding/imagen5.png" alt="Hardware Information" width="800"/>
|
||||
<br/>
|
||||
<em>Hardware Information - Detailed specs for CPU, GPU, and PCIe devices</em>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="public/images/onboarding/imagen6.png" alt="System Logs" width="800"/>
|
||||
<br/>
|
||||
<em>System Logs - Real-time monitoring with filtering and search</em>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
## Features
|
||||
|
||||
- **System Overview**: Real-time monitoring of CPU, memory, temperature, and system uptime
|
||||
@@ -683,19 +685,6 @@ entities:
|
||||
|
||||
---
|
||||
|
||||
## Contributing
|
||||
|
||||
Contributions are welcome! Please feel free to submit issues, feature requests, or pull requests.
|
||||
|
||||
### Development Setup
|
||||
|
||||
1. Clone the repository
|
||||
2. Install dependencies: `npm install`
|
||||
3. Run development server: `npm run dev`
|
||||
4. Build AppImage: `./build_appimage.sh`
|
||||
|
||||
---
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the **Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0)**.
|
||||
|
||||
@@ -231,14 +231,19 @@ def totp_disable():
|
||||
def generate_api_token():
|
||||
"""Generate a long-lived API token for external integrations (Homepage, Home Assistant, etc.)"""
|
||||
try:
|
||||
token = request.headers.get('Authorization', '').replace('Bearer ', '')
|
||||
username = auth_manager.verify_token(token)
|
||||
|
||||
if not username:
|
||||
return jsonify({"success": False, "message": "Unauthorized. Please log in first."}), 401
|
||||
|
||||
data = request.json
|
||||
username = data.get('username')
|
||||
password = data.get('password')
|
||||
totp_token = data.get('totp_token') # Optional 2FA token
|
||||
token_name = data.get('token_name', 'API Token') # Optional token description
|
||||
|
||||
# Authenticate user first
|
||||
success, token, requires_totp, message = auth_manager.authenticate(username, password, totp_token)
|
||||
# Authenticate user with password and optional 2FA
|
||||
success, _, requires_totp, message = auth_manager.authenticate(username, password, totp_token)
|
||||
|
||||
if success:
|
||||
# Generate a long-lived token (1 year expiration)
|
||||
|
||||
Reference in New Issue
Block a user