mirror of
https://github.com/DeBrosOfficial/network.git
synced 2025-12-11 07:58:50 +00:00
- Replaced all instances of DeBros with Orama throughout the codebase, including CLI commands and configuration paths. - Updated documentation to reflect the new naming convention and paths for configuration files. - Removed the outdated PRODUCTION_INSTALL.md file and added new scripts for local domain setup and testing. - Introduced a new interactive TUI installer for Orama Network, enhancing the installation experience. - Improved logging and error handling across various components to provide clearer feedback during operations.
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"
|
|
|