/ .gitignore
.gitignore
  1  # Visual Studio Code
  2  .factorypath
  3  
  4  # OSX
  5  .DS_Store
  6  
  7  # Vim
  8  *.swp
  9  *.swo
 10  
 11  # patch
 12  *.orig
 13  *.rej
 14  
 15  # Local environment
 16  .env
 17  
 18  # Plugin directory
 19  /.quarkus/cli/plugins/
 20  # TLS Certificates
 21  .certs/
 22  kls_database.db
 23  
 24  node_modules/
 25  .nuxt/
 26  
 27  # dev
 28  .yarn/
 29  !.yarn/releases
 30  !.vscode/launch.json
 31  !.vscode/*.code-snippets
 32  .idea/workspace.xml
 33  .idea/usage.statistics.xml
 34  .idea/shelf
 35  
 36  # deps
 37  node_modules/
 38  
 39  # env
 40  .env
 41  .env.production
 42  
 43  # logs
 44  logs/
 45  *.log
 46  npm-debug.log*
 47  yarn-debug.log*
 48  yarn-error.log*
 49  pnpm-debug.log*
 50  lerna-debug.log*
 51  
 52  # misc
 53  .DS_Store
 54  .drizzle/
 55  dist/
 56  
 57  .output/# compiled output
 58  /dist
 59  /node_modules
 60  /build
 61  
 62  # Logs
 63  logs
 64  *.log
 65  npm-debug.log*
 66  pnpm-debug.log*
 67  yarn-debug.log*
 68  yarn-error.log*
 69  lerna-debug.log*
 70  
 71  # OS
 72  .DS_Store
 73  
 74  # Tests
 75  /coverage
 76  /.nyc_output
 77  
 78  # IDEs and editors
 79  /.idea
 80  .project
 81  .classpath
 82  .c9/
 83  *.launch
 84  .settings/
 85  *.sublime-workspace
 86  
 87  # IDE - VSCode
 88  .vscode/*
 89  !.vscode/settings.json
 90  !.vscode/tasks.json
 91  !.vscode/launch.json
 92  !.vscode/extensions.json
 93  
 94  # dotenv environment variable files
 95  .env
 96  .env.development.local
 97  .env.test.local
 98  .env.production.local
 99  .env.local
100  
101  # temp directory
102  .temp
103  .tmp
104  
105  # Runtime data
106  pids
107  *.pid
108  *.seed
109  *.pid.lock
110  
111  # Diagnostic reports (https://nodejs.org/api/report.html)
112  report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
113  
114  /generated/prisma
115  
116  .DS_Store
117  dist
118  dist-ssr
119  *.local
120  count.txt
121  .env
122  .nitro
123  .tanstack
124  
125  tsconfig.tsbuildinfo
126  .pnpm-store/
127  .direnv/
128  .devenv/