#!/bin/sh
[ -n "${IPKG_INSTROOT}" ] || {
	echo ""
	echo "Gitea Platform installed."
	echo ""
	echo "To install and start Gitea:"
	echo "  giteactl install"
	echo "  /etc/init.d/gitea start"
	echo ""
	echo "Web interface: http://<router-ip>:3000"
	echo "SSH Git access: ssh://git@<router-ip>:2222"
	echo ""
	echo "Create admin user: giteactl admin create-user --username admin --password secret --email admin@localhost"
	echo ""
}
exit 0
