diff --git a/README.md b/README.md index b147e74..7f403f4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ # Bakkerij/CakeAdmin plugin for CakePHP +## Install CakePHP + +Note: This is only required if you do not already have a project started. + +``` +$ composer self-update && composer create-project --prefer-dist cakephp/app {your new project name} +``` + ## Installation You can install this plugin into your CakePHP application using [composer](http://getcomposer.org). @@ -7,5 +15,22 @@ You can install this plugin into your CakePHP application using [composer](http: The recommended way to install composer packages is: ``` -composer require Bakkerij/CakeAdmin +$ composer require bakkerij/cakeadmin:dev-rewrite +``` + +## Load Plugin + +``` +$ bin/cake plugin load -b -r Bakkerij/CakeAdmin +``` + +## Update Database Info + +Navigate to the new project's config/app.php and update your Datasources username, password, and database. + +## Load CakeAdmin Tables + +``` +$ bin/cake migrations migrate -p Bakkerij/CakeAdmin ``` +