2017 © Pedro Peláez
 

project app

CodeAdvent 2016 skeleton app for CakePHP

image

jdmaymeow/app

CodeAdvent 2016 skeleton app for CakePHP

  • Thursday, February 2, 2017
  • by maymeow
  • Repository
  • 1 Watchers
  • 0 Stars
  • 30 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 10 Versions
  • 0 % Grown

The README.md

Update APP skeleton for CakePHP

Baked With CakePHP License, (*1)

A skeleton for creating applications with CakePHP 3.x., (*2)

The framework source code can be found here: cakephp/cakephp., (*3)

This is updated cakephp skeleton application to make easier setup process for ca plugins., (*4)

Installation

  1. Download Composer or update composer self-update.
  2. Run php composer.phar create-project --prefer-dist jdmaymeow/app [app_name].

If Composer is installed globally, run, (*5)

composer create-project --prefer-dist jdmaymeow/app [app_name]

You should now be able to visit the path to where you installed the app and see the default home page., (*6)

Configuration

Read and edit config/app.php and setup the 'Datasources' and any other configuration relevant for your application., (*7)

Code Advent Configuration file

Code Advent (CA) plugins will use this file to read some configurations. You can edit this file at config/codeadvent.json., (*8)

Docker

docker create --name my-app --privileged -p 80 \
-e MYSQL_HOST=localhost \
-e MYSQL_USER=user \
-e MYSQL_PASS=pass \
-e MYSQL_DB_NAME=database \
-v /data:/var/www/html/webroot/data jdmaymeow/app

The Versions