Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 36 additions & 4 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,47 @@
node_modules
# Keep environment variables out of version control
# Dependencies
node_modules/

# Environment variables
.env
.env.local
.env.production

# Build output
dist/
build/

# Source map files
*.js.map
*.d.ts.map

# Logs
*.log
build.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Process ID files
*.pid
*.pid.lock

# Generated files
/src/generated/prismalogs/
.prisma/

# OS files
.DS_Store
Thumbs.db

# IDE
.vscode/
.idea/

# test snapshots and coverage output
**/__snapshots__/
*.snap
coverage/
dist/
*.log

# generated build artifacts committed by mistake
*.js.map
Expand Down
Loading