# apiview **Repository Path**: shoukaiseki/apiview ## Basic Information - **Project Name**: apiview - **Description**: 接口文档系统 - **Primary Language**: Java - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2018-09-09 - **Last Updated**: 2021-11-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # apiview #### 项目介绍 接口文档系统 其它API接口管理平台 https://github.com/Aresyi/smart-api ### 完成 clone 后执行 ```Bash git update-index --assume-unchanged src/main/resources/application-druid.yml git update-index --assume-unchanged logs/ git config --global core.excludesfile .gitignore ``` ### 个人不需要提交的文件,在.git/info/exclude 自行配置 之后执行 ```Bash git ls-files --others --exclude-from=.git/info/exclude ``` ### 添加全局忽略 ```Bash git config --global core.excludesfile ~/.gitignore ``` #### 数据库中的新增字段,注释插入column_name_search ```sql insert into apiview.column_name_search(column_name, column_label) (select distinct column_name, column_comment from information_schema.columns where column_comment is not null and column_comment != '' and column_name not in (select column_name from apiview.column_name_search)) ```