# ark-be **Repository Path**: finntenzor/ark-be ## Basic Information - **Project Name**: ark-be - **Description**: The back end of ark question database. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-07-28 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 项目简述 智力方舟题库后端 ### 设置 #### VSCode设置 ~~请在文件-首选项-设置中找到工作区设置,在其中添加以下配置~~ ``` json { "editor.tabSize": 4, "files.eol": "\n" } ``` _不需要手动配置VSCode,只需要安装“EditorConfig for VS Code”插件即可_ #### Git设置 请调整git设置为统一LF换行 ```sh git config core.autocrlf input git config core.safecrlf true ``` 或者使用全局配置 ```sh git config --global core.autocrlf input git config --global core.safecrlf true ```