build: Linux dedicated server preset + deploy package (systemd + install script)

- export_presets.cfg: ajout preset.1 Linux Server (dedicated_server=true, embed_pck=true, x86_64)
- builds/DauphinCraftServer.x86_64: binaire serveur Linux 76MB
- builds/run_server.sh: launcher avec port configurable
- deploy/: dauphincraft.service (systemd) + install.sh (VM setup)
- deploy_package/: tarball + scripts prêts à transférer sur VM
- Rebuild client Windows inclus (DauphinCraft.exe 100MB, exit 0)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Floppyrj45
2026-04-19 17:55:40 +02:00
parent 5db858527e
commit 6069e6117e
10 changed files with 108 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

9
builds/run_server.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# DauphinCraft Dedicated Server Launcher
# Usage: ./run_server.sh [port]
PORT="${1:-7777}"
BINARY_DIR="$(dirname "$(readlink -f "$0")")"
cd "$BINARY_DIR"
exec ./DauphinCraftServer.x86_64 --server --port "$PORT" --headless