yii2 boilerplate
1.0.0
前後端分類鷹架
模組化開發模版
使用dotenv 環境變數配置敏感數據
更靈活的目錄結構
使用PSR-4 自動加載
程式碼風格規範符合PSR-2,PSR-12
前端使用Vue.js + Element UI + Vue Cli 構建
https://bp.huijiewei.com/admin 帳號:13098761234 密碼:123456
https://github.com/huijiewei/agile-vue
https://github.com/huijiewei/agile-boot
項目需要PHP 7.3 以上版本
composer install
npm install
127.0.0.1 www.bp.test
server {
listen 80;
server_name www.bp.test;
root {项目根目录}/public;
index index.php index.html index.htm;
rewrite ^/(.*)/$ /$1 permanent;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
include php-fpm;
}
php bin/yii migrate
下載省市縣資料庫https://github.com/modood/Administrative-divisions-of-China/blob/master/dist/data.sqlite
重新命名為district.sqlite 並儲存到database 目錄
運行php bin/yii import/district 導入地區數據
├── bin // yii 命令
├── config // 后端配置
├── database
│ └── migrations // 数据迁移脚本
├── public // 网站根目录
│ └── statics // 静态资源
├── ui // 前端开发
│ ├── core // 公用核心模块
│ │ ├── assets
│ │ ├── components
│ │ └── styles
│ └── modules // 前端模块目录
│ └── admin // 管理后台前端代码目录
│ ├── assets
│ ├── components
│ ├── plugins
│ ├── router
│ ├── services
│ ├── store
│ ├── utils
│ └── views
├── src // 后端代码
│ ├── core // 核心公用代码
│ │ ├── components
│ │ ├── models
│ │ │ └── admin
│ │ ├── traits
│ │ └── widgets
│ └── modules // 后端模块
│ ├── admin // 管理后台
│ │ ├── api // 管理后台 API
│ │ │ ├── commands
│ │ │ └── controllers
│ │ └── spa // 管理后台 SPA 页面
│ │ ├── controllers
│ │ └── views
│ ├── website // 前台网站
│ │ ├── controllers
│ │ └── views
│ │ ├── layouts
│ │ └── templates
│ │ ├── auth
│ │ └── site
│ └── wechat // 微信端
管理後台前端開發伺服器
npm run serve:admin
管理後台建置生產版本
npm run build:admin
網址主網址http://www.bp.test/
後台訪問路徑http://www.bp.test/admin
後台管理: 使用者:13012345678 密碼:123456
Version: 2020-11-07 18:00