Online website for a local newspaper Treviso30News, with private CMS in order to publish contents such blog posts and magazine and to manage users, the editorial staff and sponsors.
How to setup this Laravel project after you cloned from GitHub.
-
Clone GitHub repo for this project locally git clone projectname
-
cd
into your project -
Install Composer Dependencies composer install
-
Install NPM Dependencies npm install
-
Create a copy of your .env file cp .env.example .env
-
Generate an app encryption key php artisan key:generate
-
Create an empty database for our application
-
In the .env file, add database information to allow Laravel to connect to the database
-
Migrate the database php artisan migrate
-
[Semi-Optional]: Seed the database php artisan db:seed