#!/bin/sh
[ -n "${IPKG_INSTROOT}" ] || {
	echo ""
	echo "Streamlit Platform installed."
	echo ""
	echo "To install and start Streamlit:"
	echo "  streamlitctl install"
	echo "  /etc/init.d/streamlit start"
	echo ""
	echo "Web interface: http://<router-ip>:8501"
	echo ""
	echo "Create apps:  streamlitctl app create myapp"
	echo "Add instance: streamlitctl instance add myapp 8502"
	echo "Gitea clone:  streamlitctl gitea clone myapp user/repo"
	echo ""
}
exit 0
