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.
 
 
 
Matt Huntington e1f96ba7ed
init laravel
5 years ago
app init laravel 5 years ago
bootstrap init laravel 5 years ago
config init laravel 5 years ago
database init laravel 5 years ago
public init laravel 5 years ago
resources init laravel 5 years ago
routes init laravel 5 years ago
storage init laravel 5 years ago
tests init laravel 5 years ago
.editorconfig init laravel 5 years ago
.env.example init laravel 5 years ago
.gitattributes init laravel 5 years ago
.gitignore init laravel 5 years ago
.styleci.yml init laravel 5 years ago
README.md Update README.md 5 years ago
README_LARAVEL.md init laravel 5 years ago
artisan init laravel 5 years ago
composer.json init laravel 5 years ago
composer.lock init laravel 5 years ago
package-lock.json init laravel 5 years ago
package.json init laravel 5 years ago
phpunit.xml init laravel 5 years ago
server.php init laravel 5 years ago
webpack.mix.js init laravel 5 years ago

README.md

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

  • run php artisan serve

  • go to http://localhost:8000/