Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boleiros/kraken
Em desenvolvimento...
https://github.com/boleiros/kraken
admin cakephp2 cakephp3
Last synced: about 1 month ago
JSON representation
Em desenvolvimento...
- Host: GitHub
- URL: https://github.com/boleiros/kraken
- Owner: boleiros
- Created: 2017-04-19T16:44:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-19T11:54:12.000Z (over 7 years ago)
- Last Synced: 2024-04-17T00:41:11.170Z (8 months ago)
- Topics: admin, cakephp2, cakephp3
- Language: PHP
- Homepage: http://cakephpbrasil.com.br
- Size: 277 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CakePHP Application Skeleton
[![Build Status](https://img.shields.io/travis/cakephp/app/master.svg?style=flat-square)](https://travis-ci.org/cakephp/app)
[![License](https://img.shields.io/packagist/l/cakephp/app.svg?style=flat-square)](https://packagist.org/packages/cakephp/app)## Installation
You can install this plugin into your CakePHP application using [composer](http://getcomposer.org).
The recommended way to install composer packages is:
```
composer require boleiros/kraken
```## Configuration
1. Read and edit `config/app.php` and setup the 'Datasources' and any other.
2. Edit to your settings the file located in: `config/ninja_cms.php`.
3. You need to run `bin/cake migrations seed` to perform all seeds or `bin/cake migrations seed --seed UsersSeed` to perform a specific seed.## Run Migrations
```
bin/cake migrations migrate
```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.