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 | |
#This script is intended as a quick laravel development website generator. | |
#It will ask you for a domain name to use, and it will generate and configure | |
#several things for you, like a local website that works on a fictitious domain name | |
#using https. | |
# | |
#For example, if you enter mygreatwebsite.lh, you will end up with a local laravel | |
#website working on https://www.mygreatwebsite.lh |
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 | |
#Configure these two variables | |
MYUSER="joel" | |
APACHEGROUP="www-data" | |
#you don't need to edit anything below. | |
echo "Setting variables..." |