xvying 6fb94ce148 youhuiquanliebiao | il y a 4 ans | |
---|---|---|
.history | il y a 4 ans | |
app | il y a 4 ans | |
bootstrap | il y a 5 ans | |
config | il y a 4 ans | |
database | il y a 5 ans | |
public | il y a 4 ans | |
resources | il y a 4 ans | |
routes | il y a 4 ans | |
storage | il y a 4 ans | |
tests | il y a 5 ans | |
.browserslistrc | il y a 5 ans | |
.editorconfig | il y a 4 ans | |
.env.example | il y a 4 ans | |
.eslintrc.js | il y a 5 ans | |
.gitattributes | il y a 5 ans | |
.gitignore | il y a 4 ans | |
.styleci.yml | il y a 5 ans | |
LICENSE | il y a 5 ans | |
app-api.md | il y a 5 ans | |
artisan | il y a 5 ans | |
babel.config.js | il y a 5 ans | |
blu.jar | il y a 5 ans | |
composer.json | il y a 4 ans | |
package-lock.json | il y a 5 ans | |
package.json | il y a 5 ans | |
phpunit.xml | il y a 5 ans | |
postcss.config.js | il y a 5 ans | |
readme.md | il y a 4 ans | |
server.php | il y a 5 ans | |
vue.config.js | il y a 5 ans | |
yfjy_bike(御风嘉云)-2020-8-21.csv | il y a 4 ans | |
yfjy_bike(御风嘉云)-2020-8-21.sql | il y a 4 ans |
PC运维端:提供PC管理服务
开发语言: php
技术方案:主要采用 laravel 5.8.* + Vue2.* 基础框架做的二次开发。
依赖环境: PHP >= 7.0
OpenSSL PHP 扩展
PDO PHP 扩展
Mbstring PHP 扩展
Mongodb php扩展
安装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