项目地址 Bee
Bee 是人力资源系统中的考勤应用,主要功能用于员工申请假单。Bee 具有较高的性能、扩展性等,其中包括前后端分离、插拔式的规则验证(验证器)、数据过滤(装饰器)、消息队列等,后端在 Laravel 的 MVC 模式上,又添加了 Services、Repositories 层,明确每个类的职责,使用 Passport 的密码模式获取接口数据。
git clone [email protected]:SexyPhoenix/Bee.git
composer install
chmod -R 777 storage
php artisan key:generate
mkdir -p uploads/bee
chmod -R 777 uploads
cp .env.example .env
APP_URL=http://localhost
ASSET_URL=http://localhost
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
php artisan migrate
php artisan passport:keys
php artisan passport:client --password --name='bee' //name 自定义
php artisan queue:work bee --queue=apply --sleep=3 --tries=3 & > /dev/null
server {
listen 80;
server_name dev.bee.goods; // 自定义
index index.html index.htm index.php;
location / {
rewrite ^/(.*)$ /index.php/$1 last;
try_files $uri $uri/ /index.php?$query_string;
}
location ~ /uploads/ {
root "/var/www/Bee"; // 自定义
}
location ~ \.(html|gif|jpg|jpeg|css|js|eot|svg|ttf|woff|woff2|png)$ {
root "/var/www/Bee/public"; // 自定义
}
location ~ (.+\.php)(.*)$ {
root /var/www/Bee/public; // 自定义
fastcgi_split_path_info ^(.+\.php)(.+)$;
fastcgi_pass unix:/var/run/php-fpm/php7-fpm.sock; // 自定义
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
}
}
cnpm install //cnpm 淘宝的
export const API_DOMAIN = 'http://xxx/beeapi' //resources\js\config\bee.js 文件中修改域名
npm run dev
最后,注意配置域名到 host。
打开 http://xxx/bee#/
账号: [email protected] 密码:123456
1
murmur 2019-09-03 17:06:59 +08:00
支持一个,但是这个需求在实际应用中拿工作流几下就配出来了啊,而且不能挂接考勤机就没意思了
|
2
incheon 2019-09-03 17:17:44 +08:00
感觉没啥用...
|
3
SexyPhoenix OP 考勤机说的是签到签退吗? 是两个东西,不冲突的。我们这边就是分开的, 没有签到签退记录,会自动生成考勤记录
配出来的都太丑了,这边的项目都是自己做的 O(∩_∩)O 哈哈~ |
4
blindpirate 2019-09-03 17:41:30 +08:00
道理我都懂,但是 777 真的不会有问题么?
|
5
wbrobot 2019-09-03 17:45:52 +08:00
建议: 用下钉钉
|