# activiti-app **Repository Path**: XuXiangJob/activiti-app ## Basic Information - **Project Name**: activiti-app - **Description**: 权限管理后台 - **Primary Language**: Java - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-01-28 - **Last Updated**: 2021-12-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # activiti-app #### 介绍 权限管理后台-系统权限从菜单到角色,按钮可控制。 #### 软件架构 springboot+mybatis+mybatis-plus+nginx #### 安装教程 1. idea 克隆代码-导入相应的包 后端代码[https://gitee.com/xuxiangxiaolan/activiti-app.git] 2. 新数据库里面执行db文件夹下的sql,修改数据库连接。 3. 启动项目 4. 前端 https://gitee.com/xuxiangxiaolan/java-admin-ui.git #### nginx配置 1. 前后端分离,需要mginx解决跨域问题 worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; keepalive_timeout 65; #gzip on; server { listen 9527; server_name 127.0.0.1; #前端访问路径 #charset koi8-r; #access_log logs/host.access.log main; #添加头部信息 proxy_set_header Cookie $http_cookie; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; location / { root html; index index.html index.htm; } location /frame { root F:\data\workspase\goadmin\go-admin-ui\dist; #前端打包后文件地址 index index.html; try_files $uri $uri/ /frame/index.html = 404; } location ^~/api/ { proxy_pass http://127.0.0.1:8080/; #后端访问路径 } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }