chore: update README.md

This commit is contained in:
Oliver Steiner
2026-05-05 22:29:28 +02:00
committed by GitHub
parent 36faf40ebc
commit d1ea80db21
+10 -16
View File
@@ -15,46 +15,40 @@
## Overview ## Overview
4CAMPS Manager is a **Tauri + React** desktop app used to manage 4CAMPS PCs in real time. 4CAMPS Manager je aplikace postavená na **Tauri + React** pro správu 4CAMPS počítačů
It verifies the local machine through the API, connects to Socket.IO, and reacts to remote actions (block, ping, forms, power actions).
## Tech Stack ## Tech Stack
- **Frontend:** React 19 + TypeScript + Vite - **Frontend:** React 19 + TypeScript + Vite
- **Desktop runtime:** Tauri v2 (Rust backend) - **Desktop runtime:** Tauri v2 (Rust backend)
- **Realtime:** Socket.IO client - **Komunikace:** Socket.IO
- **Package manager:** Bun - **Package manager:** Bun
## Quick Start ## Quick Start
```bash ```bash
bun install bun install
```
Tauri development mode:
```bash
bun run tauri dev bun run tauri dev
``` ```
## Scripts ## Scripts
- `bun run tauri dev` - Run desktop app in dev mode - `bun run tauri dev` - Spustí aplikaci v dev režimu
- `bun run tauri build` - Build production desktop binaries (Won't work for updates) - `bun run tauri build` - Vytvoří produkční desktop build (nefunguje pro aktualizace)
## Project Structure ## Project Structure
- `src/` - React frontend - `src/` - React frontend
- `src/routes/` - Route pages - `src/routes/` - Routy
- `src/components/` - Shared UI components - `src/components/` - Sdílené UI komponenty
- `src/lib/` - Shared frontend utilities and types - `src/lib/` - Sdílené frontend utility a typy
- `src-tauri/src/` - Rust commands and app runtime logic - `src-tauri/src/` - Rust commandz a runtime logika
- `src-tauri/capabilities/` - Tauri capability config - `src-tauri/capabilities/` - Konfigurace Tauri capabilities
## Releasing ## Releasing
1. Stage changes: 1. Připrav změny:
```bash ```bash
git add . git add .
``` ```