Created
July 11, 2017 21:09
-
-
Save connor11528/fcfbdb63bc9633a54f40f0a66e3d3f2e to your computer and use it in GitHub Desktop.
Create a new Laravel application
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
#!/bin/bash | |
laravel new $1 | |
cd $1 | |
composer install | |
yarn install | |
touch README.md | |
cp .env.example .env | |
git init | |
git add -A | |
git commit -m 'Initial commit' | |
php artisan key:generate | |
php artisan config:clear | |
php artisan config:cache |
hello does anyone know what I need to do to get my catagory deleted everytime i try and delete it it takes me to a page that says... Whoops, looks like something went wrong.
QueryException
SQLSTATE[42S02]: Base table or view not found:
with a red page listing a bunch of errors. I just dont have that much knowledge to know what I should do to fix it,
[email protected]
2 Things to do;
- Cross-check your DB connections to ensure your app is pointing to the correct database
- Ensure that the table or view is indicated as "not found" actually does exist. If not, create it.
This should be all you need to proceed.
3 Things to do;
use pygithub to automatically create repo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create a MySQL database locally:
Update the .env file: