- Move all application env vars to repository-root .env (with .env.example as the committed template) and drop the per-app .env.example files. - Add @code/env subpaths (agent, convex) and consume validated exports everywhere instead of reading process.env directly. - Wire every dev/build/start script to load ../../.env via bun --env-file and point vite.config.ts envDir at the repo root.
57 lines
583 B
Plaintext
57 lines
583 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build outputs
|
|
dist
|
|
build
|
|
*.tsbuildinfo
|
|
|
|
# Generated files
|
|
apps/web/src/routeTree.gen.ts
|
|
|
|
# Environment variables live at the repository root
|
|
.env
|
|
.env*.local
|
|
!.env.example
|
|
|
|
# IDEs and editors
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Turbo
|
|
.turbo
|
|
.nx
|
|
|
|
# Better-T-Stack
|
|
.alchemy
|
|
.vercel
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
|
|
# Misc
|
|
*.tgz
|
|
.cache
|
|
tmp
|
|
temp
|