Slim down the verbiage

This commit is contained in:
David Heinemeier Hansson 2025-08-10 21:02:57 +02:00
parent cb6134076f
commit 7929988901

View File

@ -23,6 +23,7 @@ ruby)
mise use --global ruby@latest mise use --global ruby@latest
mise settings add idiomatic_version_file_enable_tools ruby mise settings add idiomatic_version_file_enable_tools ruby
mise x ruby -- gem install rails --no-document mise x ruby -- gem install rails --no-document
echo -e "\nYou can now run: rails new myproject"
;; ;;
node) node)
echo -e "Installing Node.js...\n" echo -e "Installing Node.js...\n"
@ -44,18 +45,13 @@ laravel)
echo -e "Installing PHP and Laravel...\n" echo -e "Installing PHP and Laravel...\n"
install_php install_php
composer global require laravel/installer composer global require laravel/installer
echo "PHP, Composer, and Laravel have been installed successfully." echo -e "\nYou can now run: laravel new myproject"
echo "You can now run: laravel new myproject"
;; ;;
symfony) symfony)
echo -e "Installing PHP and Symfony...\n" echo -e "Installing PHP and Symfony...\n"
install_php install_php
yay -S symfony-cli --noconfirm yay -S symfony-cli --noconfirm
echo "PHP, Composer, and Symfony CLI have been installed successfully." echo -e "\nYou can now run: symfony new --webapp myproject"
echo "If you are building a traditional web application:"
echo "symfony new --webapp my_project"
echo "If you are building a microservice, console application or API:"
echo "symfony new my_project"
;; ;;
python) python)
echo -e "Installing Python...\n" echo -e "Installing Python...\n"