-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
577 lines (432 loc) · 10.9 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
.nyc_report
.vite_report
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# TypeScript v1 declaration files
typings/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
.env.test
# parcel-bundler cache (https://parceljs.org/)
.cache
# Next.js build output
.next
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Jest
test-report.xml
# Snyk
snyk.sarif
# Docker/Podman volumes
.volumes
# VSCode
.vscode
# Dist
**/dist/**
# IntelliJ
.idea/**
**/*.iml
### Eclipse ###
backend/.metadata
backend/bin/
backend/tmp/
backend/*.tmp
backend/*.bak
backend/*.swp
backend/*~.nib
backend/local.properties
backend/.settings/
backend/.loadpath
backend/.recommenders
# External tool builders
backend/.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
backend/*.launch
# PyDev specific (Python IDE for Eclipse)
backend/*.pydevproject
# CDT-specific (C/C++ Development Tooling)
backend/.cproject
# CDT- autotools
backend/.autotools
# Java annotation processor (APT)
backend/.factorypath
# PDT-specific (PHP Development Tools)
backend/.buildpath
# sbteclipse plugin
backend/.target
# Tern plugin
backend/.tern-project
# TeXlipse plugin
backend/.texlipse
# STS (Spring Tool Suite)
backend/.springBeans
# Code Recommenders
backend/.recommenders/
# Annotation Processing
backend/.apt_generated/
backend/.apt_generated_test/
# Scala IDE specific (Scala & Java development for Eclipse)
backend/.cache-main
backend/.scala_dependencies
backend/.worksheet
# Uncomment this line if you wish to ignore the project description file.
# Typically, this file would be tracked if it contains build/dependency configurations:
#.project
### Eclipse Patch ###
# Spring Boot Tooling
backend/.sts4-cache/
### Intellij+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
backend/.idea/**/workspace.xml
backend/.idea/**/tasks.xml
backend/.idea/**/usage.statistics.xml
backend/.idea/**/dictionaries
backend/.idea/**/shelf
# AWS User-specific
backend/.idea/**/aws.xml
# Generated files
backend/.idea/**/contentModel.xml
# Sensitive or high-churn files
backend/.idea/**/dataSources/
backend/.idea/**/dataSources.ids
backend/.idea/**/dataSources.local.xml
backend/.idea/**/sqlDataSources.xml
backend/.idea/**/dynamic.xml
backend/.idea/**/uiDesigner.xml
backend/.idea/**/dbnavigator.xml
# Gradle
backend/.idea/**/gradle.xml
backend/.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
backend/cmake-build-*/
# Mongo Explorer plugin
backend/.idea/**/mongoSettings.xml
# File-based project format
backend/*.iws
# IntelliJ
backend/out/
# mpeltonen/sbt-idea plugin
backend/.idea_modules/
# JIRA plugin
backend/atlassian-ide-plugin.xml
# Cursive Clojure plugin
backend/.idea/replstate.xml
# SonarLint plugin
backend/.idea/sonarlint/
# Crashlytics plugin (for Android Studio and IntelliJ)
backend/com_crashlytics_export_strings.xml
backend/crashlytics.properties
backend/crashlytics-build.properties
backend/fabric.properties
# Editor-based Rest Client
backend/.idea/httpRequests
# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
### Intellij+all Patch ###
# Ignore everything but code style settings and run configurations
# that are supposed to be shared within teams.
backend/.idea/*
!backend/.idea/codeStyles
!backend/.idea/runConfigurations
### Java ###
# Compiled class file
backend/*.class
# Log file
backend/*.log
# BlueJ files
backend/*.ctxt
# Mobile Tools for Java (J2ME)
backend/.mtj.tmp/
# Package Files #
backend/*.jar
backend/*.war
backend/*.nar
backend/*.ear
backend/*.zip
backend/*.tar.gz
backend/*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
backend/hs_err_pid*
backend/replay_pid*
### Maven ###
backend/target/
backend/pom.xml.tag
backend/pom.xml.releaseBackup
backend/pom.xml.versionsBackup
backend/pom.xml.next
backend/release.properties
backend/dependency-reduced-pom.xml
backend/buildNumber.properties
backend/.mvn/timing.properties
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
backend/.mvn/wrapper/maven-wrapper.jar
# Eclipse m2e generated files
# Eclipse Core
backend/.project
# JDT-specific (Eclipse Java Development Tools)
backend/.classpath
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
# Local History for Visual Studio Code
.history/
# Built Visual Studio Code Extensions
*.vsix
### VisualStudioCode Patch ###
# Ignore all local history of files
.history
.ionide
# End of https://www.toptal.com/developers/gitignore/api/java,maven,eclipse,intellij+all,visualstudiocode
### User related configuration
# The below expression will prevent user specific configuration files from being added to the repository
**/config/application-dev-*.*
.checkstyle
backend/.checkstyle
# Created by https://www.toptal.com/developers/gitignore/api/vue,vuejs,visualstudiocode
# Edit at https://www.toptal.com/developers/gitignore?templates=vue,vuejs,visualstudiocode
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
frontend/.vscode/*
!frontend/.vscode/settings.json
!frontend/.vscode/tasks.json
!frontend/.vscode/launch.json
!frontend/.vscode/extensions.json
!frontend/.vscode/*.code-snippets
# Local History for Visual Studio Code
.history/
frontend/.history/
# Built Visual Studio Code Extensions
*.vsix
frontend/*.vsix
### VisualStudioCode Patch ###
# Ignore all local history of files
.history
frontend/.history
.ionide
frontend/.ionide
node_modules/
frontend/node_modules/
dist/
frontend/dist/
npm-debug.log
frontend/npm-debug.log
yarn-error.log
frontend/yarn-error.log
# End of https://www.toptal.com/developers/gitignore/api/vue,vuejs,visualstudiocode
# Created by https://www.toptal.com/developers/gitignore/api/vue,vuejs,node
# Edit at https://www.toptal.com/developers/gitignore?templates=vue,vuejs,node
### Node ###
# Logs
frontend/logs
frontend/*.log
frontend/npm-debug.log*
frontend/yarn-debug.log*
frontend/yarn-error.log*
frontend/lerna-debug.log*
frontend/.pnpm-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
frontend/report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
frontend/pids
frontend/*.pid
frontend/*.seed
frontend/*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
frontend/lib-cov
# Coverage directory used by tools like istanbul
frontend/coverage
frontend/*.lcov
# nyc test coverage
frontend/.nyc_output
frontend/.nyc_report
frontend/.vite_report
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
frontend/.grunt
# Bower dependency directory (https://bower.io/)
frontend/bower_components
# node-waf configuration
frontend/.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
frontend/build/Release
# Dependency directories
frontend/node_modules/
frontend/jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
frontend/web_modules/
# TypeScript cache
frontend/*.tsbuildinfo
# Optional npm cache directory
frontend/.npm
# Optional eslint cache
frontend/.eslintcache
# Optional stylelint cache
frontend/.stylelintcache
# Microbundle cache
frontend/.rpt2_cache/
frontend/.rts2_cache_cjs/
frontend/.rts2_cache_es/
frontend/.rts2_cache_umd/
# Optional REPL history
frontend/.node_repl_history
# Output of 'npm pack'
frontend/*.tgz
# Yarn Integrity file
frontend/.yarn-integrity
# dotenv environment variable files
frontend/.env
frontend/.env.development.local
frontend/.env.test.local
frontend/.env.production.local
frontend/.env.local
# parcel-bundler cache (https://parceljs.org/)
frontend/.cache
frontend/.parcel-cache
# Next.js build output
frontend/.next
frontend/out
# Nuxt.js build / generate output
frontend/.nuxt
frontend/dist
# Gatsby files
frontend/.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
frontend/.vuepress/dist
# vuepress v2.x temp and cache directory
frontend/.temp
# Docusaurus cache and generated files
frontend/.docusaurus
# Serverless directories
frontend/.serverless/
# FuseBox cache
frontend/.fusebox/
# DynamoDB Local files
frontend/.dynamodb/
# TernJS port file
frontend/.tern-port
# Stores VSCode versions used for testing VSCode extensions
frontend/.vscode-test
# yarn v2
frontend/.yarn/cache
frontend/.yarn/unplugged
frontend/.yarn/build-state.yml
frontend/.yarn/install-state.gz
frontend/.pnp.*
### Node Patch ###
# Serverless Webpack directories
frontend/.webpack/
# Optional stylelint cache
# SvelteKit build / generate output
frontend/.svelte-kit
frontend/dist/
frontend/npm-debug.log
frontend/yarn-error.log
# End of https://www.toptal.com/developers/gitignore/api/vue,vuejs,node
frontend/nr-forest-client-report.*
.DS_Store
cypress/results/*
cypress/reports/*
cypress/screenshots/*
cypress/videos/*
cypress/cypress/results/*
cypress/cypress/reports/*
cypress/cypress/screenshots/*
cypress/cypress/videos/*
frontend/cypress/results/*
frontend/cypress/reports/*
frontend/cypress/screenshots/*
frontend/cypress/videos/*
reports/
frontend/reports/
**/sonar-report.xml
**/config/*.jks
**/reports-merge/
**docker-compose.override.yml