- 创建 monorepo 结构(Turborepo) - 初始化前端项目(Next.js + TypeScript + Tailwind CSS) - 初始化后端项目(NestJS + TypeScript) - 配置开发工具(ESLint, Prettier, VS Code) - 创建项目文档(README, 开发规范) Closes #1
57 lines
405 B
Plaintext
57 lines
405 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Testing
|
|
coverage
|
|
|
|
# Next.js
|
|
.next/
|
|
out/
|
|
build
|
|
dist
|
|
|
|
# Production
|
|
*.tgz
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Local env files
|
|
.env
|
|
.env*.local
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
|
|
# Turborepo
|
|
.turbo
|
|
|
|
# Database
|
|
*.sqlite
|
|
*.db
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# OS
|
|
Thumbs.db
|