Last active
July 30, 2022 14:13
-
-
Save itsazzad/dbf4c3ddc2177686e33602ab31f1c622 to your computer and use it in GitHub Desktop.
laravel.build
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
docker info > /dev/null 2>&1 | |
# Ensure that Docker is running... | |
if [ $? -ne 0 ]; then | |
echo "Docker is not running." | |
exit 1 | |
fi | |
echo "Starting..." | |
docker run --rm \ | |
-v "$(pwd)":/opt \ | |
-w /opt \ | |
laravelsail/php81-composer:latest \ | |
bash -c "composer create-project laravel/laravel="8.*" example-app && cd example-app && php ./artisan sail:install --with=mysql,redis,meilisearch,mailhog,selenium " | |
cd example-app | |
CYAN='\033[0;36m' | |
LIGHT_CYAN='\033[1;36m' | |
WHITE='\033[1;37m' | |
NC='\033[0m' | |
echo "" | |
if sudo -n true 2>/dev/null; then | |
sudo chown -R $USER: . | |
echo -e "${WHITE}Get started with:${NC} cd example-app && ./vendor/bin/sail up" | |
else | |
echo -e "${WHITE}Please provide your password so we can make some final adjustments to your application's permissions.${NC}" | |
echo "" | |
sudo chown -R $USER: . | |
echo "" | |
echo -e "${WHITE}Thank you! We hope you build something incredible. Dive in with:${NC} cd example-app && ./vendor/bin/sail up" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment