You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
878 B
878 B
Steps to Create and Deploy
-
Make sure you have MAMP and Postgres installed and running
-
Download comopser: https://getcomposer.org/composer-stable.phar
-
In Terminal, run:
mv ~/Downloads/composer-stable.phar /usr/local/bin/composerchmod 755 /usr/local/bin/composercomposer global require laravel/installerecho 'export PATH="$HOME/.composer/vendor/bin:$PATH"' >> ~/.bash_profilels /Applications/MAMP/bin/phpand take note of the most recent version- run
echo 'export PATH="/Applications/MAMP/bin/php/php7.4.2/bin:$PATH"' >> ~/.bash_profilesubstituting your latest version of php forphp7.4.2
-
close terminal window and open a new one
-
go to where you want your app to be and run
laravel new blogsubstituting the name of your app forblog -
cdinto your app's dir -
run
php artisan serve -
go to http://localhost:8000/