Celestic API - Project Manager for projects software (developed with Yii 2.0)
config/ contains application configurations
controllers/ contains Web controller classes
mail/ contains view files for e-mails
migrations/ contains migrations files (database)
models/ contains model classes
runtime/ contains files generated during runtime
tests/ contains various tests for the basic application
vendor/ contains dependent 3rd-party packages
web/ contains the entry script and Web resources
- PHP 5.4.0
- MySQL 5.2
- Apache 2.0
Edit the file config/db.php
with real data, for example:
return [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=celestic',
'username' => 'root',
'password' => 'password',
'charset' => 'utf8',
];
Also check and edit the other files in the config/
directory to customize your application.
Please consider using php yii migration
inside root folder