feat: 初始化笔记项目
- 新建后端项目 biji-houdaun,使用 Spring Boot 和 SQLite - 新建前端项目 biji-qianduan,使用 Vue3 - 添加 Dockerfile 用于构建后端镜像 -配置 .gitignore 和 .gitattributes 文件
This commit is contained in:
65
biji-qianduan/.gitignore
vendored
Normal file
65
biji-qianduan/.gitignore
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
### Example user template template
|
||||
### Example user template
|
||||
|
||||
# IntelliJ project files
|
||||
.idea
|
||||
target
|
||||
*.iml
|
||||
out
|
||||
mvnw
|
||||
.mvn
|
||||
mvnw.cmd
|
||||
gen
|
||||
logs
|
||||
logs/*
|
||||
*.gz
|
||||
*/.vscode
|
||||
.vscode
|
||||
#忽略所有.svn目录
|
||||
.svn/
|
||||
#忽略所有target目录
|
||||
target/
|
||||
#忽略所有.idea目录及其内容
|
||||
.idea/
|
||||
.idea/*
|
||||
vite.svg
|
||||
vue.svg
|
||||
#忽略所有.ipr文件
|
||||
*.ipr
|
||||
#忽略所有.iws文件
|
||||
*.iws
|
||||
#忽略所有.gradle目录
|
||||
.gradle/
|
||||
#忽略所有.settings目录
|
||||
.settings/
|
||||
#忽略所有.classpath文件
|
||||
.classpath
|
||||
#忽略所有.project文件
|
||||
.project
|
||||
#忽略所有.pydevproject文件
|
||||
.pydevproject
|
||||
#忽略所有.DS_Store文件
|
||||
.DS_Store
|
||||
#忽略所有.class文件
|
||||
*.class
|
||||
#忽略所有.log文件
|
||||
*.log
|
||||
#忽略所有.tmp文件
|
||||
*.tmp
|
||||
#忽略所有.swp文件
|
||||
*.swp
|
||||
node_modules/
|
||||
/dist/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.git
|
||||
|
||||
# Editor directories and files
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
dist/
|
||||
npm-debug.log
|
||||
.vscode/
|
||||
Reference in New Issue
Block a user