├── .gitignore ├── .htaccess ├── LICENSE.md ├── README.md ├── backend ├── config │ ├── .gitignore │ ├── main.php │ └── params.php ├── runtime │ └── .gitignore └── web │ ├── .gitignore │ ├── .htaccess │ └── assets │ └── .gitignore ├── cache └── .gitignore ├── common ├── config │ ├── .gitignore │ ├── aliases.php │ ├── db.php │ ├── main.php │ └── params.php └── data │ └── db.sql ├── composer.json ├── console ├── config │ ├── .gitignore │ ├── main.php │ └── params.php └── runtime │ └── .gitignore ├── environments ├── dev │ ├── backend │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ └── web │ │ │ └── index.php │ ├── common │ │ └── config │ │ │ ├── db-local.php │ │ │ ├── main-local.php │ │ │ └── params-local.php │ ├── console │ │ └── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ ├── frontend │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ └── web │ │ │ └── index.php │ └── yii ├── index.php └── prod │ ├── backend │ ├── config │ │ ├── main-local.php │ │ └── params-local.php │ └── web │ │ └── index.php │ ├── common │ └── config │ │ ├── db-local.php │ │ ├── main-local.php │ │ └── params-local.php │ ├── console │ └── config │ │ ├── main-local.php │ │ └── params-local.php │ ├── frontend │ ├── config │ │ ├── main-local.php │ │ └── params-local.php │ └── web │ │ └── index.php │ └── yii ├── frontend ├── config │ ├── .gitignore │ ├── main.php │ └── params.php ├── runtime │ └── .gitignore └── web │ ├── .gitignore │ ├── .htaccess │ └── assets │ └── .gitignore ├── init ├── init.bat ├── requirements.php ├── statics ├── temp │ └── .gitignore └── web │ ├── .htaccess │ ├── blogs │ ├── images │ │ └── .gitignore │ └── previews │ │ └── .gitignore │ └── users │ └── avatars │ └── .gitignore └── yii.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vova07/yii2-start/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vova07/yii2-start/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vova07/yii2-start/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vova07/yii2-start/HEAD/README.md -------------------------------------------------------------------------------- /backend/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vova07/yii2-start/HEAD/backend/config/.gitignore -------------------------------------------------------------------------------- /backend/config/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vova07/yii2-start/HEAD/backend/config/main.php -------------------------------------------------------------------------------- /backend/config/params.php: -------------------------------------------------------------------------------- 1 |