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:
9
builds/run_server.sh
Normal file
9
builds/run_server.sh
Normal 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
|
||||
Reference in New Issue
Block a user