If you clone this repository to make a new project, REMEMBER to change your git remote origin to new repository.
This is a CMS to deploy and use for building website. Its fast pace and easy installation is good to use in freelance!
- Backpack CRUD
- Menu CRUD
- Log Manager
- Page Manager
- Permission Manager
- Settings for Website
- Pages SEO
- Seeded webmaster, admin and user roles
- Basic permissions for website
- jade
- sass
-
Make sure you have
composer
in your computer. (click here for installation guide) -
Run
composer install
in your terminal. -
Copy
.env.example
file to make a.env
file. Fill in neccessary information inside.APP_NAME, DB_DATABASE, DB_USERNAME, DB_PASSWORD, BACKPACK_ADMIN_NAME, BACKPACK_ADMIN_EMAIL, BACKPACK_ADMIN_PASSWORD
-
Run
mysql -u <USER> -p -e "CREATE DATABASE <DATABASE_NAME_IN_DOT_ENV_FILE>"
to create database. -
Run
php artisan migrate
in your terminal. -
Run
php artisan db:seed
to create users, roles and permissions to your database. -
Run
php artisan key:generate
to generate key for your application. -
Run
npm install --save
to get gulp functions work.
php artisan serve
gulp watch
After turning on the server by php artisan serve
, run this command to switch on watcher.
It will enable browserSync in port 3000
, and watch sass and jade files change.
php artisan tinker
Nothing yet.