Skip to content

Latest commit

 

History

History
45 lines (25 loc) · 1.38 KB

README.md

File metadata and controls

45 lines (25 loc) · 1.38 KB

CakePHP3 Adminlte 2 Skeleton

Build Status License

A skeleton for creating applications with Cakephp3 and Adminlte 2 theme

Installation

-> Download Composer or update composer self-update.

Clone project with below command

Run below command to clone this project.

git clone https://github.com/ashishonmobile/cakephp3_adminlte_2.git <folder_name>

Download libraries from below command.

php composer.phar update

php composer.phar install (this will create missing app.php file, logs and tmp folders)

Create a database in mysql, You can give any name to it.

than run below command to create the table in database.

php bin/cake.php migrations migrate

now its time to bake controller, model and template

php bin/cake.php bake model all php bin/cake.php bake controller all php bin/cake.php bake template all

This will create all the required php files and ctp files in project.

Now you can access the user page from below url

http://localhost/cakephp3_adminlte_2/users

Configuration

Read and edit config/app.php and setup the 'Datasources' and any other configuration relevant for your application.