Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Kareylo/BlogMVC-CakePHP3
Part of BlogMVC project: http://blogmvc.com/
https://github.com/Kareylo/BlogMVC-CakePHP3
Last synced: 2 months ago
JSON representation
Part of BlogMVC project: http://blogmvc.com/
- Host: GitHub
- URL: https://github.com/Kareylo/BlogMVC-CakePHP3
- Owner: Kareylo
- Created: 2017-05-24T18:05:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-24T18:45:39.000Z (over 7 years ago)
- Last Synced: 2024-08-03T14:07:55.035Z (6 months ago)
- Language: PHP
- Size: 223 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-cakephp - BlogMVC - A simple Blog example with CakePHP based on [BlogMVC Project](https://github.com/Grafikart/BlogMVC). (Demo)
README
# CakePHP 3 - BlogMVC
A simple CakePHP 3 application to see how CakePHP 3 works !
## Installation
1. Download [Composer](http://getcomposer.org/doc/00-intro.md) or update `composer self-update`.
2. Run `composer install`.
3. Edit `config/app.php` with your databases informations (Search "Datasources")
4. Run
```bash
bin/cake migrations migrate
bin/cake migrations seed
```
You can now either use your machine's webserver to view the default home page, or start
up the built-in webserver with:```bash
bin/cake server -p 8765
```Then visit `http://localhost:8765` to see the welcome page.