diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2022-10-27 09:44:54 +0700 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2022-10-27 09:44:54 +0700 |
| commit | d0eed645a4276c182d373b00e2b383e0ed190ed7 (patch) | |
| tree | 9ad8d33afcae7b2e9711989859c0535893864856 /.gitignore | |
| parent | aba7a8d3e7df1f07285de6cd3b2a5f221a1cd535 (diff) | |
initial commit
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 |
