diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 66 |
1 files changed, 26 insertions, 40 deletions
@@ -1,50 +1,36 @@ -# These are some examples of commonly ignored file patterns. -# You should customize this list as applicable to your project. -# Learn more about .gitignore: -# https://www.atlassian.com/git/tutorials/saving-changes/gitignore +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. -# Node artifact files -node_modules/ -dist/ +# dependencies +/node_modules +/.pnp +.pnp.js -# Compiled Java class files -*.class +# testing +/coverage -# Compiled Python bytecode -*.py[cod] +# next.js +/.next/ +/out/ -# Log files -*.log +# production +/build -# Package files -*.jar - -# Maven -target/ -dist/ - -# JetBrains IDE -.idea/ - -# Unit test reports -TEST*.xml - -# Generated by MacOS +# misc .DS_Store +*.pem -# Generated by Windows -Thumbs.db +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* -# Applications -*.app -*.exe -*.war +# local env files +.env*.local -# Large media files -*.mp4 -*.tiff -*.avi -*.flv -*.mov -*.wmv +# vercel +.vercel +# typescript +*.tsbuildinfo +next-env.d.ts |
