Initial commit
This commit is contained in:
68
.gitignore
vendored
68
.gitignore
vendored
@ -1,43 +1,41 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.*
|
||||
.yarn/*
|
||||
!.yarn/patches
|
||||
!.yarn/plugins
|
||||
!.yarn/releases
|
||||
!.yarn/versions
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
|
||||
# debug
|
||||
# Node
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# env files (can opt-in for committing if needed)
|
||||
# Next.js
|
||||
.next/
|
||||
|
||||
# 环境变量
|
||||
.env*
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
# Prisma
|
||||
prisma/dev.db
|
||||
prisma/*.sqlite
|
||||
prisma/migrations/*/README.md
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
# 录音音频文件(如有)
|
||||
public/recordings/
|
||||
|
||||
/app/generated/prisma
|
||||
# 测试输出
|
||||
coverage/
|
||||
|
||||
# Mac/Windows/Linux 系统文件
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# 日志
|
||||
*.log
|
||||
|
||||
# 其他
|
||||
*.local
|
||||
*.swp
|
||||
.idea/
|
||||
.vscode/
|
||||
|
||||
# 不要提交本地构建产物
|
||||
out/
|
||||
|
||||
# 不要提交 docker 挂载的持久化数据
|
||||
*.pid
|
||||
|
||||
5
next-env.d.ts
vendored
Normal file
5
next-env.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
/// <reference types="next" />
|
||||
/// <reference types="next/image-types/global" />
|
||||
|
||||
// NOTE: This file should not be edited
|
||||
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
|
||||
1
tsconfig.tsbuildinfo
Normal file
1
tsconfig.tsbuildinfo
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user