feat: 初始化笔记项目

- 新建后端项目 biji-houdaun,使用 Spring Boot 和 SQLite
- 新建前端项目 biji-qianduan,使用 Vue3
- 添加 Dockerfile 用于构建后端镜像
-配置 .gitignore 和 .gitattributes 文件
This commit is contained in:
ikmkj
2025-06-16 19:52:23 +08:00
commit 8a4bf2d245
21 changed files with 2527 additions and 0 deletions

33
biji-qianduan/index.html Normal file
View File

@@ -0,0 +1,33 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>我的笔记</title>
</head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
font-size: 16px;
line-height: 1.5;
color: #333;
background-color: #fff;
}
#app {
width: 100%;
height: 100%;
}
</style>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>