Last active
November 19, 2024 13:33
-
-
Save Larsklopstra/c209984b1606e2db301311b147662d06 to your computer and use it in GitHub Desktop.
Ubuntu Laravel Development Environment
This file contains 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
#!/bin/bash | |
echo 'π Starting setup...' | |
echo '--------------------' | |
sudo apt update | |
sudo apt upgrade | |
echo 'π π Installing Fish and Starship...' | |
echo '------------------------------------' | |
sudo apt install fish -y | |
sudo snap install starship | |
rm ~/.config/fish/config.fish -f | |
mkdir -p ~/.config/fish | |
ln -sf ./dotfiles/config.fish ~/.config/fish/config.fish | |
chsh -s (which fish) | |
echo 'π Adding current user to docker group...' | |
echo '-----------------------------------------' | |
sudo groupadd docker | |
sudo usermod -aG docker $USER | |
echo 'π€ Installing dev environment...' | |
echo '--------------------------------' | |
sudo apt install nodejs php php-cli composer docker.io -y | |
echo 'π Enabling docker on boot...' | |
echo '-----------------------------' | |
sudo systemctl enable docker | |
echo 'π Installing PHP extensions...' | |
echo '-------------------------------' | |
sudo apt install php-mbstring php-mysql php-xml php-json php-tokenizer php-ctype php-fileinfo php-zip php-curl -y | |
echo 'π Installing Linux Valet...' | |
echo '----------------------------' | |
sudo apt install network-manager libnss3-tools jq xsel -y | |
composer global require cpriego/valet-linux | |
sudo service apache2 stop | |
valet install | |
sleep 1 | |
mkdir ~/Sites | |
cd ~/Sites | |
valet park | |
echo 'πΎ Installing Takeout...' | |
echo '------------------------' | |
composer global require tightenco/takeout | |
echo 'π¦ Installing Laravel installer...' | |
echo '----------------------------------' | |
composer global require laravel/installer | |
echo 'π¦ Installing Statamic installer...' | |
echo '-----------------------------------' | |
composer global require statamic/cli | |
echo 'π² Setting up git...' | |
echo '--------------------' | |
echo 'What\'s your name?' | |
read name | |
git config --global user.name '$name' | |
echo 'What\'s your email address?' | |
read email | |
git config --global user.email $email | |
echo 'π Generating SSH keys...' | |
echo '-------------------------' | |
ssh-keygen -t ed25519 | |
echo 'π You're now ready to create awesome software!' | |
echo '-----------------------------------------------' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment