Content Management System developed with Laravel framework.
-
Clone the project
git clone https://github.com/stmeem/laravel-cms.git laravel-cms
-
Create an empty MySQL database
-
Go to the folder application using cd command on your cmd or terminal
cd laravel-cms
-
Install dependencies with Composer
composer install
-
Copy .env.example file to .env on the root folder
cp .env.example .env
-
Set a new encryption key
php artisan key:generate
-
Run
php artisan migrate
In order to work on assets, you need to install Node.js
npm install
npm run dev
Finally, run php artisan serve
.
To view the project, open http://localhost:8000.