mirror of
https://git.oceanpay.cc/danial/kami_apple_exchage.git
synced 2025-12-18 21:23:49 +00:00
- 新增 CODEBUDDY.md、GEMINI.md、GEMINI_CN.md 等项目文档 - 更新 Dockerfile 和其他配置文件 - 优化部分代码结构,如 orders.py、tasks.py 等 - 新增 .dockerignore 文件
178 lines
1.9 KiB
Plaintext
178 lines
1.9 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
.npm/
|
|
.yarn/
|
|
.pnpm/
|
|
bun.lockb
|
|
pnpm-lock.yaml
|
|
yarn.lock
|
|
package-lock.json
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Next.js
|
|
.next/
|
|
out/
|
|
.swc/
|
|
next-env.d.ts
|
|
.vercel/
|
|
.turbo/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
public/_next/
|
|
storybook-static/
|
|
tsconfig.tsbuildinfo
|
|
|
|
# Development files
|
|
.env
|
|
.env.*
|
|
.env.local
|
|
.env.development
|
|
.env.test
|
|
!.env.production
|
|
|
|
# Docker and deployment files
|
|
deploy/
|
|
docker-compose*.yml
|
|
.docker/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Test and coverage
|
|
coverage/
|
|
.nyc_output/
|
|
cypress/videos/
|
|
cypress/screenshots/
|
|
.cypress-cache/
|
|
|
|
# Temporary files
|
|
*.log
|
|
.temp/
|
|
.cache/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
*.lcov
|
|
|
|
# nyc test coverage
|
|
.nyc_output
|
|
|
|
# Dependency directories
|
|
node_modules
|
|
jspm_packages/
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# parcel-bundler cache (https://parceljs.org/)
|
|
.cache
|
|
.parcel-cache
|
|
|
|
# next.js build output
|
|
.next
|
|
|
|
# nuxt.js build output
|
|
.nuxt
|
|
|
|
# vuepress build output
|
|
.vuepress/dist
|
|
|
|
# Serverless directories
|
|
.serverless
|
|
|
|
# FuseBox cache
|
|
.fusebox/
|
|
|
|
# DynamoDB Local files
|
|
.dynamodb/
|
|
|
|
# TernJS port file
|
|
.tern-port
|
|
|
|
# Stores VSCode versions used for testing VSCode extensions
|
|
.vscode-test
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.tmp
|
|
.temp
|
|
|
|
# Test files
|
|
**/*.test.*
|
|
**/*.spec.*
|
|
**/test/
|
|
**/tests/
|
|
**/__tests__/ |