Some checks failed
Deploy to Production / deploy (push) Failing after 6s
- Removed .env file containing sensitive API keys and passwords from version control - Updated .gitignore to exclude all .env files except .env.example across all apps - Added protection for environment files in subdirectories with apps/**/.env pattern - Ensures credentials and secrets are kept out of repository while preserving example templates
29 lines
298 B
Plaintext
29 lines
298 B
Plaintext
# Node
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
/dist/
|
|
/apps/**/dist/
|
|
/packages/**/dist/
|
|
|
|
# Env & secrets
|
|
.env.local
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
apps/**/.env
|
|
apps/**/.env.*
|
|
!apps/**/.env.example
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS / IDE
|
|
.DS_Store
|
|
*.swp
|
|
.idea/
|
|
.vscode/
|