Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lorenzo/cakephp3-bookmarkr
A Sample CakePHP 3 application built with the Crud plugin
https://github.com/lorenzo/cakephp3-bookmarkr
Last synced: 3 months ago
JSON representation
A Sample CakePHP 3 application built with the Crud plugin
- Host: GitHub
- URL: https://github.com/lorenzo/cakephp3-bookmarkr
- Owner: lorenzo
- Archived: true
- Created: 2014-10-23T07:55:49.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-08T13:49:50.000Z (over 9 years ago)
- Last Synced: 2024-07-27T21:46:53.182Z (3 months ago)
- Language: PHP
- Size: 327 KB
- Stars: 17
- Watchers: 3
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-cakephp - Bookmarkr
README
# CakePHP Application Example Using the Crud Plugin
This is an example applicaiton that implements the bookmarker tutorial form the CakePHP manual, but using
the [super powerful Crud plugin](https://github.com/friendsofcake/crud).## Installation
1. Download [Composer](http://getcomposer.org/doc/00-intro.md) or update `composer self-update`.
2. Run `php composer.phar create-project --prefer-dist -s dev lorenzo/cakephp3-bookmarker [app_name]`.## Configuration
Read and edit `config/app.php` and setup the 'Datasources' and any other
configuration relevant for your application.## Run migrations
After setting up the databse, load the tables
```
bin/cake migrations migrate
```