冯喜服务器上面的未来bike-admin

Mead 762a143b22 调整 2 năm trước cách đây
app 762a143b22 调整 2 năm trước cách đây
bootstrap 0a420f1fe4 init 2 năm trước cách đây
config 0a420f1fe4 init 2 năm trước cách đây
database 0a420f1fe4 init 2 năm trước cách đây
public 0a420f1fe4 init 2 năm trước cách đây
resources 0a420f1fe4 init 2 năm trước cách đây
routes 0a420f1fe4 init 2 năm trước cách đây
storage 0a420f1fe4 init 2 năm trước cách đây
tests 0a420f1fe4 init 2 năm trước cách đây
wechat_20190826_cert 0a420f1fe4 init 2 năm trước cách đây
.browserslistrc 0a420f1fe4 init 2 năm trước cách đây
.editorconfig 0a420f1fe4 init 2 năm trước cách đây
.env.example 0a420f1fe4 init 2 năm trước cách đây
.eslintrc.js 0a420f1fe4 init 2 năm trước cách đây
.gitattributes 0a420f1fe4 init 2 năm trước cách đây
.gitignore 0a420f1fe4 init 2 năm trước cách đây
.styleci.yml 0a420f1fe4 init 2 năm trước cách đây
LICENSE 0a420f1fe4 init 2 năm trước cách đây
app-api.md 0a420f1fe4 init 2 năm trước cách đây
artisan 0a420f1fe4 init 2 năm trước cách đây
babel.config.js 0a420f1fe4 init 2 năm trước cách đây
blu.jar 0a420f1fe4 init 2 năm trước cách đây
composer.json 0a420f1fe4 init 2 năm trước cách đây
package-lock.json 0a420f1fe4 init 2 năm trước cách đây
package.json 0a420f1fe4 init 2 năm trước cách đây
phpunit.xml 0a420f1fe4 init 2 năm trước cách đây
postcss.config.js 0a420f1fe4 init 2 năm trước cách đây
readme.md 0a420f1fe4 init 2 năm trước cách đây
server.php 0a420f1fe4 init 2 năm trước cách đây
vue.config.js 0a420f1fe4 init 2 năm trước cách đây

readme.md

未来bike-PC后台管理端(包含运维小程序API、厂测端小程序API)

项目简介

PC运维端:提供PC管理服务

开发语言: php

技术方案:主要采用 laravel 5.8.* + Vue2.* 基础框架做的二次开发。

依赖环境: PHP >= 7.0

OpenSSL PHP 扩展

PDO PHP 扩展

Mbstring PHP 扩展

Mongodb php扩展

项目详情

项目目录文件简介

目录详情见https://learnku.com/docs/laravel/5.8/structure/3881

项目配置文件

  • config/*.php 其中的配置项:短信、数据库、redis、队列、微信、接口、权限等
  • 配置 中控控制端 地址参数:(app/Handlers/BikeControl.php)中的:$registerAddress
  • 配置微信退款证书

服务器部署

  • 安装composer,并在跟目录下安装项目依赖包,命令如下

    $ composer install
    
  • 安装js依赖文件

    yarn install && yarn build
    
  • 生成JWT秘钥

    php artisan jwt:secret
    
  • 配置ngnix文件

    # yarn build 之后的路径
    location /admin/ {
      try_files $uri $uri/ /admin/index.html;
    }
      
    # yarn dev 或者 yarn watch 之后的路径
    location /admin-dev/ {
      try_files $uri $uri/ /admin-dev/index.html;
    }
      
    # Laravel
    location / {
      try_files $uri $uri/ /index.php$is_args$args;
    }
    
  • 配置任务调度

    * * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
    
  • 启动队列服务

    php artisan queue:work