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.
|
# Node
|
||||||
|
node_modules/
|
||||||
# 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
|
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
.pnpm-debug.log*
|
|
||||||
|
|
||||||
# env files (can opt-in for committing if needed)
|
# Next.js
|
||||||
|
.next/
|
||||||
|
|
||||||
|
# 环境变量
|
||||||
.env*
|
.env*
|
||||||
|
|
||||||
# vercel
|
# Prisma
|
||||||
.vercel
|
prisma/dev.db
|
||||||
|
prisma/*.sqlite
|
||||||
|
prisma/migrations/*/README.md
|
||||||
|
|
||||||
# typescript
|
# 录音音频文件(如有)
|
||||||
*.tsbuildinfo
|
public/recordings/
|
||||||
next-env.d.ts
|
|
||||||
|
|
||||||
/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