All checks were successful
CI / Lint, Typecheck & Test (push) Successful in 2m22s
Added various directories and files to .gitignore to prevent them from being tracked, including IDE configurations, documentation, and seed data generator.
51 lines
574 B
Plaintext
51 lines
574 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build outputs
|
|
.next
|
|
dist
|
|
build
|
|
out
|
|
|
|
# Turbo
|
|
.turbo
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Convex
|
|
apps/admin/.env.staging
|
|
apps/storefront/.env.staging
|
|
convex/.env.staging
|
|
|
|
# Others
|
|
seed-data-generator/
|
|
.agent/
|
|
.gitea/
|
|
.cursor/
|
|
.idea/
|
|
.vscode/
|
|
docs/
|
|
.claude/
|
|
.aiassistant/
|
|
add-shadcn-ui-mcp.md
|
|
gitea-cicd-troubleshooting.md
|
|
.gitignore
|
|
some_html_template.html
|
|
notes.md |