This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # =========================================== | |
| # Rails Development Environment Setup Script | |
| # =========================================== | |
| # This script sets up a complete development environment for the Rails application | |
| # Designed for Ubuntu 22.04 LTS (but should work on 20.04+ as well) | |
| # Usage: chmod +x setup_dev_environment.sh && ./setup_dev_environment.sh | |
| set -euo pipefail # Exit on error, undefined vars, pipe failures |
OlderNewer