From 41e4aee033eaacd8d21da19425a5ab88dbe5e440 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Wed, 7 Oct 2020 11:41:49 -0400 Subject: [PATCH] Update README.md --- README.md | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2cd69a8..064554f 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,16 @@ -- Make sure you have MAMP and Postgres installed -- Download the compser installation file: https://getcomposer.org/composer-stable.phar -- In Terminal, go run: `mv ~/Downloads/composer-stable.phar /usr/local/bin/composer` -- `chmod 755 /usr/local/bin/composer` -- `composer global require laravel/installer` -- `echo 'export PATH="$HOME/.composer/vendor/bin:$PATH"' >> ~/.bash_profile` -- `ls /Applications/MAMP/bin/php` and take note of the most recent version -- `echo 'export PATH="/Applications/MAMP/bin/php/php7.4.2/bin:$PATH"' >> ~/.bash_profile` substituting your latest version of php for `php7.4.2` +# 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/composer` + - `chmod 755 /usr/local/bin/composer` + - `composer global require laravel/installer` + - `echo 'export PATH="$HOME/.composer/vendor/bin:$PATH"' >> ~/.bash_profile` + - `ls /Applications/MAMP/bin/php` and take note of the most recent version + - run `echo 'export PATH="/Applications/MAMP/bin/php/php7.4.2/bin:$PATH"' >> ~/.bash_profile` substituting your latest version of php for `php7.4.2` + - close terminal window and open a new one - go to where you want your app to be and run `laravel new blog` substituting the name of your app for `blog` - `cd` into your app's dir