Skip to content

Commit

Permalink
updated gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
iprime2 committed Sep 28, 2024
1 parent a32dafd commit 5387eac
Showing 1 changed file with 81 additions and 21 deletions.
102 changes: 81 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,41 +1,101 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
/node_modules
/frontend/node_modules
/backend/node_modules

#FE
# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz
/frontend/.pnp.js
/frontend/.yarn/install-state.gz

# testing
/coverage
/frontend/coverage

# next.js
/.next/
/out/
/frontend/.next/
/frontend/out/

# production
/build
/frontend/build

# misc
.DS_Store
*.pem
/frontend/.DS_Store
/frontend/*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/frontend/npm-debug.log*
/frontend/yarn-debug.log*
/frontend/yarn-error.log*

# local env files
.env*.local
/frontend/.env*.local

# vercel
.vercel
/frontend/.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
/frontend/*.tsbuildinfo
/frontend/next-env.d.ts

/frontend/.env
/frontend/next
/frontendpnpm-lock.yaml
/frontend/package-lock.json

#BE
# compiled output
/backend/dist
/backend/node_modules
/backend/build

# Logs
/backend/logs
/backend/*.log
/backend/npm-debug.log*
/backend/pnpm-debug.log*
/backend/yarn-debug.log*
/backend/yarn-error.log*
/backend/lerna-debug.log*

# OS
/backend/.DS_Store

# Tests
/backend/coverage
/backend/.nyc_output

# IDEs and editors
/.idea
/backend/.project
/backend/.classpath
/backend/.c9/
/backend/*.launch
/backend/.settings/
/backend/*.sublime-workspace

# IDE - VSCode
/backend/.vscode/*
/backend/!.vscode/settings.json
/backend/!.vscode/tasks.json
/backend/!.vscode/launch.json
/backend/!.vscode/extensions.json

# dotenv environment variable files
/backend/.env
/backend/.env.development.local
/backend/.env.test.local
/backend/.env.production.local
/backend/.env.local

# temp directory
.temp
.tmp

# Runtime data
pids
*.pid
*.seed
*.pid.lock

.env
/next
pnpm-lock.yaml
package-lock.json
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

0 comments on commit 5387eac

Please sign in to comment.