laowang 6749c08e8c 免押金卡 | há 4 anos atrás | |
---|---|---|
app | há 4 anos atrás | |
bootstrap | há 5 anos atrás | |
config | há 4 anos atrás | |
database | há 5 anos atrás | |
public | há 4 anos atrás | |
resources | há 4 anos atrás | |
routes | há 4 anos atrás | |
storage | há 5 anos atrás | |
tests | há 5 anos atrás | |
.browserslistrc | há 5 anos atrás | |
.editorconfig | há 4 anos atrás | |
.env.example | há 4 anos atrás | |
.eslintrc.js | há 5 anos atrás | |
.gitattributes | há 5 anos atrás | |
.gitignore | há 4 anos atrás | |
.styleci.yml | há 5 anos atrás | |
LICENSE | há 5 anos atrás | |
app-api.md | há 5 anos atrás | |
artisan | há 5 anos atrás | |
babel.config.js | há 5 anos atrás | |
blu.jar | há 5 anos atrás | |
composer.json | há 4 anos atrás | |
package-lock.json | há 5 anos atrás | |
package.json | há 5 anos atrás | |
phpunit.xml | há 5 anos atrás | |
postcss.config.js | há 5 anos atrás | |
readme.md | há 4 anos atrás | |
server.php | há 5 anos atrás | |
vue.config.js | há 5 anos atrás | |
yfjy_bike(御风嘉云)-2020-8-21.csv | há 4 anos atrás | |
yfjy_bike(御风嘉云)-2020-8-21.sql | há 4 anos atrás |
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