- Added .env.staging files for admin and storefront applications to .gitignore. - Updated package.json and package-lock.json to include @convex-dev/resend and its dependencies. - Introduced new Convex-related modules and updated peer dependencies for better compatibility. This commit enhances the environment configuration and integrates the Resend service into the project.
37 lines
397 B
Plaintext
37 lines
397 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
|
|
convex/_generated
|
|
apps/admin/.env.staging
|
|
apps/storefront/.env.staging
|
|
convex/.env.staging
|