Yii 2 Basic Project Template is a skeleton Yii 2 application best for rapidly creating small projects.
The template contains the basic features including user login/logout and a contact page. It includes all commonly used configurations that would allow you to focus on adding new features to your application.
assets/ contains assets definition
commands/ contains console commands (controllers)
components/ contains custom made application components
config/ contains application configurations
controllers/ contains Web controller classes
logs/ apache logs
mail/ contains view files for e-mails
messages/ contains application translations
migrations/ database migrations
models/ contains model classes
rbac/ contains role based access control classes
runtime/ contains files generated during runtime
tests/ contains various tests for the basic application
vendor/ contains dependent 3rd-party packages
views/ contains view files for the Web application
web/ contains the entry script and Web resources
The minimum requirement by this project template that your Web server supports PHP 5.4.0.
If you do not have Composer, you may install it by following the instructions at getcomposer.org.
You can then install this project template using the following command:
git clone git@github.com:dimadimx/odtrk.git
php composer.phar install --no-dev
Now you should be able to access the application through the following URL, assuming basic is the directory
directly under the Web root.
http://localhost/odtrk/web/
Edit the file config/db.php with real data, for example:
return [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=yii2basic',
'username' => 'root',
'password' => '1234',
'charset' => 'utf8',
];NOTES:
- Yii won't create the database for you, this has to be done manually before you can access it.
- Check and edit the other files in the
config/directory to customize your application as required.
After successfully installation and configuration run the migrate, import and setup command to initialize the module in your project.
php yii migrate
