mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-27 16:54:14 +00:00
19 lines
395 B
Bash
19 lines
395 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Post-installation script for orama package
|
|
|
|
echo "Orama installed successfully!"
|
|
echo ""
|
|
echo "To set up your node, run:"
|
|
echo " sudo orama install"
|
|
echo ""
|
|
echo "This will launch the interactive installer."
|
|
echo ""
|
|
echo "For command-line installation:"
|
|
echo " sudo orama install --vps-ip <your-ip> --domain <your-domain>"
|
|
echo ""
|
|
echo "For help:"
|
|
echo " orama --help"
|
|
|