https://github.com/coderius/yii2-advanced-starter
Yii2 advanced template, modified to quickly start development. Frequently used necessary elements have been added so as not to waste time on the same actions when starting a new project.
https://github.com/coderius/yii2-advanced-starter
Last synced: 3 months ago
JSON representation
Yii2 advanced template, modified to quickly start development. Frequently used necessary elements have been added so as not to waste time on the same actions when starting a new project.
- Host: GitHub
- URL: https://github.com/coderius/yii2-advanced-starter
- Owner: coderius
- License: bsd-3-clause
- Created: 2020-02-10T18:56:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-30T21:49:54.000Z (over 1 year ago)
- Last Synced: 2025-01-24T22:34:38.060Z (5 months ago)
- Language: PHP
- Size: 215 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Yii 2 Advanced Project Template Starter.
Steps to install project:
=========================* Clone repository from github
* Run in console from root directory ```composer update```
* Run in console from root directory ```php init```
* Create db and add config to connect to in common/config/main-local.php
* Run in console from root directory ```yii migrate``` (create tables `user` and `migration`)
* Run in console from root directory ```yii migrate --migrationPath=@yii/rbac/migrations/``` (create four rbac tables)
* Run in console from root directory ```run yii rbac/init``` (see console/controllers/RbacController.php)What included in kit.
-------------------------1. Create options to use pretty Url`s.
2. Create rbac controller and base roles. Use rbac db manager in this case.
3. Add links from frontend to backend and conversely.
4. Create theming in view options.
5. Add in frontend/config/main options to include favicon in view.