说明
本工具为官方自带的工具,但已根据 [LNMP]Yii 2.x 应用程序目录结构(基于官方Advanced版本)进行调整,所以使用该工具,必须在遵循目录规范。
作用
- 应用的运行环境检查
- composer 工具,库的代码文件在 /../verdor/
- 应用的快速初始化工作,包括:web目录下index文件部署、目录读写权限设置、文件读写文件设置、配置文件初始化设置、文件软链设置
- 切换应用的运行模式,包括开发模式、生产模式(可配置扩展)
- 其他不同模式下的模版文件部署(如:robots.txt 等文件)
工具结构
<pre>
requirements.php 运行环境检查工具(web工具)
composer.phar composer 运行脚本
composer.json composer代码源配置
composer.lock composer的lock文件
init 初始化工具脚本
init.bat 初始化工具脚本(window)
environments/ 应用模版文件
</pre>
environments/
index.php
<pre>
return [
//开发模式
'Development' => [
//模版代码目录
'path' => 'dev',
//设置可读写的目录
'setWritable' => [
'backend/assets',
'frontend/assets',
'runtime',
'data',
],
//设置可执行的文件
'setExecutable' => [
'console/yii',
'console/yii.bat',
'tests/codeception/bin/yii',
],
//设置cookie的key
'setCookieValidationKey' => [
'config/backend/main.php',
'config/frontend/main.php',
],
//软链设置
'createSymlink' => [
'index.php' => 'frontend/index.php',
'index-test.php' => 'frontend/index-test.php',
'robots' => 'frontend/robots',
'assets' => 'frontend/assets',
'/frontend/data' => '/data',
'/frontend/static' => '/static',
'/backend/data' => '/data',
'/backend/static' => '/static',
],
//运行前清除的目录
'setCleanPath'=>[
'frontend',
'backend',
],
//运行web程序的用户
'webUser'=>'nobody',
],
];
</pre>
dev
开发模式下的模版文件
<pre>
config/
console/
frontend/
backend/
</pre>
prod
生产模式下的模版文件
<pre>
config/
console/
frontend/
backend/
</pre>
工具运行
运行前配置
设置文件为可执行:
<pre>
cd /path/tools/
chmod u+x init composer.phar
</pre>
配置php命令的实际路径:在init文件开头
<pre>
!/usr/local/php5.6.15/bin/php
<?php
...
</pre>
使用composer工具
<pre>
cd /path/tools/
./composer.phar
</pre>
环境检查工具
http://xxx.xxx.xxx/tools/requirements.php
初始化工具
<pre>
cd /path/tools/
./init
</pre>