- Update **ReadMe.md** with: - Spark console command syntax correction - New **Adventure Platform Mod** and **Better Fabric Console** entries - Resolved TODO items: server template setup and datapack sync - Add **bash/init-local-server.sh** to automate server template deployment - Enhance **bash/export-serverpack.sh** with datapack synchronization via `rsync`
12 lines
359 B
Bash
Executable File
12 lines
359 B
Bash
Executable File
#!/bin/bash
|
||
#
|
||
# Запуск локального тестового сервера.
|
||
# MC 26.1.2 требует Java 25. Консоль с историей — better-fabric-console (vanilla readLine стрелки не понимает).
|
||
#
|
||
set -euo pipefail
|
||
|
||
SERVER_DIR="/home/dimti/Seafile/minecraft/installers/m2612"
|
||
|
||
cd "${SERVER_DIR}"
|
||
exec bash start.sh
|