暂无描述

shishaohua 175b71e542 chmod 6 年之前
app 09a5f1f2b0 admin 6 年之前
biz 09a5f1f2b0 admin 6 年之前
common e3a7882744 消息通知 6 年之前
console 60334140cc 模板消息补充 6 年之前
doc c06fc0985a 数据库字典目录 6 年之前
vendor 3623f64865 达达接口文档 6 年之前
.bowerrc fe19d464ec update .gitignore 6 年之前
.env.example e52223f596 配置化的debug gii 6 年之前
.gitattributes a69fcf925c init 6 年之前
.gitignore 4ce53e056f 命名空间 6 年之前
.travis.yml a69fcf925c init 6 年之前
LICENSE.md a69fcf925c init 6 年之前
README.md b3d74cb721 README.md 文件更新 (框架相关的重要信息都在这里说明) 6 年之前
composer.json d472e00281 image 6 年之前
composer.lock d472e00281 image 6 年之前
env.php d352f757f5 使用 .env 来配置项目环境变量 6 年之前
init a69fcf925c init 6 年之前
init.bat a69fcf925c init 6 年之前
region.sql 0cb7245d1f 导入省市区 6 年之前
sql.txt ed56339b09 数据库变更操作 6 年之前
yii 175b71e542 chmod 6 年之前
yii.bat a69fcf925c init 6 年之前

README.md

Yii 2 框架环境说明

文件目录说明

common
    config/              contains shared configurations
    mail/                contains view files for e-mails
    models/              contains model classes used in both backend and frontend
console
    config/              contains console configurations
    controllers/         contains console controllers (commands)
    migrations/          contains database migrations
    models/              contains console-specific model classes
    runtime/             contains files generated during runtime
backend
    assets/              contains application assets such as JavaScript and CSS
    config/              contains backend configurations
    controllers/         contains Web controller classes
    models/              contains backend-specific model classes
    runtime/             contains files generated during runtime
    views/               contains view files for the Web application
    web/                 contains the entry script and Web resources
frontend
    assets/              contains application assets such as JavaScript and CSS
    config/              contains frontend configurations
    controllers/         contains Web controller classes
    models/              contains frontend-specific model classes
    runtime/             contains files generated during runtime
    views/               contains view files for the Web application
    web/                 contains the entry script and Web resources
    widgets/             contains frontend widgets
vendor/                  contains dependent 3rd-party packages
environments/            contains environment-based overrides
tests                    contains various tests for the advanced application
    codeception/         contains tests developed with Codeception PHP Testing Framework

创建.env文件

cp .env.example .env

1.数据库配置

DB_DSN='mysql:host=127.0.0.1;dbname=huahuibao' # ip地址;数据库名称
DB_USERNAME='root'  # 数据库用户名
DB_PASSWORD='353167' # 数据库密码

2.redis 配置

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null # 密码为空,请写上 null
REDIS_PORT=6379
REDIS_DB=0