# recruit **Repository Path**: levelX/recruit ## Basic Information - **Project Name**: recruit - **Description**: 天外天招募中心 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-17 - **Last Updated**: 2024-08-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 天外天招募中心系统 > @author amorfati > @document 链接: https://apifox.com/apidoc/shared-e3441d80-0185-41e7-b673-a12cd721f90e 访问密码: gWysmC7L(没权限合到twt里,导出了一份静态接口文档在resource目录下) ## 框架 - Java 17 - SpringBoot 2.5.5 ## 业务处理 - 账号基于[天外天账号](https://www.showdoc.com.cn/openapi4twtstudio/5717519989421020) - 资源路径 - 详情见application.yaml - 其实主要就两个,日志路径/var/log/recruit,上传资源存储路径/var/www/recruit - 权限控制参考项目 - [springboot-jwt-demo](https://github.com/echisan/springboot-jwt-demo) - 数据库 - 建表语句在src/main/resources/static/sql ## 其他 - 部署脚本 ```shell #!/bin/bash time=$(date +%Y-%m-%d) kill -9 $(lsof -t -i :9925) sleep 2 nohup /path/jdk-17.0.10/bin/java -jar recruit-0.0.1-SNAPSHOT.jar --server.port=port >> recruit.log 2>&1 & sleep 2 lsof -i:9925 jobs -l ```