https://github.com/michaelpiper/geneo
geneo blog example
https://github.com/michaelpiper/geneo
Last synced: about 2 months ago
JSON representation
geneo blog example
- Host: GitHub
- URL: https://github.com/michaelpiper/geneo
- Owner: michaelpiper
- Created: 2020-01-11T11:05:32.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-14T05:29:58.000Z (over 2 years ago)
- Last Synced: 2024-04-16T14:11:50.579Z (about 1 year ago)
- Language: JavaScript
- Size: 5.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
vGCjz;BuUcBh
use file in webroot/structure.sql to migrate database
use file in webroot/data.sql to migrate database datadefault user
email : [email protected]
password : secret
# CakePHP Application Skeleton[](https://travis-ci.org/cakephp/app)
[](https://packagist.org/packages/cakephp/app)
[](https://github.com/phpstan/phpstan)A skeleton for creating applications with [CakePHP](https://cakephp.org) 4.x.
The framework source code can be found here: [cakephp/cakephp](https://github.com/cakephp/cakephp).
heroku login
## Installation1. Download [Composer](https://getcomposer.org/doc/00-intro.md) or update `composer self-update`.
2. Run `php composer.phar create-project --prefer-dist cakephp/app [app_name]`.If Composer is installed globally, run
```bash
composer create-project --prefer-dist cakephp/app
```In case you want to use a custom app dir name (e.g. `/myapp/`):
```bash
composer create-project --prefer-dist cakephp/app myapp
```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.
## Update
Since this skeleton is a starting point for your application and various files
would have been modified as per your needs, there isn't a way to provide
automated upgrades, so you have to do any updates manually.## Configuration
Read and edit the environment specific `config/app_local.php` and setup the
`'Datasources'` and any other configuration relevant for your application.
Other environment agnostic settings can be changed in `config/app.php`.## Layout
The app skeleton uses [Milligram](https://milligram.io/) (v1.3) minimalist CSS
framework by default. You can, however, replace it with any other library or
custom styles.