dev-master
9999999-devProject skeleton for Dietcube 1.0.x
MIT
The Requires
The Development Requires
1.0.0
1.0.0.0Project skeleton for Dietcube 1.0.x
MIT
The Requires
The Development Requires
Project skeleton for Dietcube 1.0.x
This package is a project skeleton for Dietcube., (*1)
composer create-project dietcube/project -s dev your-project
(your-project
is a sample directory name for the project. Camelized name of the directory is used as your application namespace (e.g. YourProject\\
)., (*2)
edit app/config/config.php edit app/config/config_{DIET_ENV}.php
Set debug mode on:, (*3)
<?php return [ 'debug' => true, ... ];
DIET_ENV
is the ENV name., (*4)
If DIET_ENV
is not set for any environment variable (Dietcube checks $_SERVER['DIET_ENV']
and getenv('DIET_ENV')
), Dispatcher::getEnv()
returns production
by default., (*5)
Typically, development
is used for development environment so dietcube-project
's initialise script generates app/config/config_development.php
for default development config file., (*6)
For example, set DIET_ENV
as development
., (*7)
Apache Conf:, (*8)
SetEnv DIET_ENV production
Nginx Conf (with php-fpm):, (*9)
fastcgi_param DIET_ENV production;
DIET_ENV=development php -d variables_order=EGPCS -S 0:8080 -t webroot/
Project skeleton for Dietcube 1.0.x
MIT
Project skeleton for Dietcube 1.0.x
MIT