Skip to content

Commit

Permalink
文档: 添加README.md和index.html的基本结构
Browse files Browse the repository at this point in the history
- 在项目根目录下创建README.md,介绍KIMI AI Free服务的关键功能和使用的静态页面框架,整合Docsify指南。
- 构建index.html库以支持文档浏览。
-调整pom.xml以包括docs目录资源的过滤设置。
  • Loading branch information
周子斐 committed Sep 12, 2024
1 parent 0f792b0 commit 99c3872
Show file tree
Hide file tree
Showing 7 changed files with 494 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,13 @@
</plugin>
</plugins>
<resources>
<resource>
<directory>${project.basedir}/docs</directory> <!-- 根目录,也就是上一目录 -->
<includes>
<include>**/*</include> <!-- 包含文件 -->
</includes>
<filtering>false</filtering> <!-- 关闭过滤,以避免内容被替换 -->
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
Expand Down
Empty file.
Loading

0 comments on commit 99c3872

Please sign in to comment.