2017 © Pedro Peláez
 

project crud-demo-app

CakePHP + CRUD + CRUD View + Search demo app

image

friendsofcake/crud-demo-app

CakePHP + CRUD + CRUD View + Search demo app

  • Saturday, November 28, 2015
  • by jippi
  • Repository
  • 6 Watchers
  • 9 Stars
  • 300 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 9 Forks
  • 0 Open issues
  • 1 Versions
  • 1 % Grown

The README.md

Installation

Get the source code

composer

composer create-project -s dev friendsofcake/crud-demo-app
cd crud-demo-app

Setup the database

Modify config/app_local.php in the Datasources section to reflect your own database., (*1)

Create the database schema bin/cake migrations migrate. Seed the database bin/cake migrations seed., (*2)

You can also import the config/schema/db.sql file into your database instead of using the migrations., (*3)

Create a webserver

php -S 0.0.0.0:9999 -t webroot/ index.php

Access the website

Go to http://localhost:9999/posts, (*4)

The Versions