#!/bin/sh
[ -n "${IPKG_INSTROOT}" ] || {
	echo ""
	echo "============================================"
	echo "  SimpleX Chat Server Installed"
	echo "============================================"
	echo ""
	echo "Quick Start:"
	echo "  1. Install container: simplexctl install"
	echo "  2. Set hostname:      uci set simplex.smp.hostname='smp.example.com'"
	echo "  3. Commit:            uci commit simplex"
	echo "  4. Start:             /etc/init.d/simplex start"
	echo ""
	echo "Control commands:"
	echo "  simplexctl status      - Show service status"
	echo "  simplexctl get-address - Get server addresses for clients"
	echo "  simplexctl logs        - View server logs"
	echo ""
	echo "Ports: SMP=5223, XFTP=443"
	echo ""
}
exit 0
