-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
63 lines (59 loc) · 1.08 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
####### IGNORE FOR ANGULAR APP ##########
# compiled output
/web/dist
/web/tmp
/web/out-tsc
# Only exists if Bazel was run
/web/bazel-out
# dependencies
/web/node_modules
# profiling files
/web/chrome-profiler-events.json
/web/speed-measure-plugin.json
# IDEs and editors
/web/.idea
/web/.project
/web/.classpath
/web/.c9/
/web/*.launch
/web/.settings/
/web/*.sublime-workspace
# IDE - VSCode
/web/.vscode/*
/web/!.vscode/settings.json
/web/!.vscode/tasks.json
/web/!.vscode/launch.json
/web/!.vscode/extensions.json
/web/.history/*
# misc
/web/.sass-cache
/web/connect.lock
/web/coverage
/web/libpeerconnection.log
/web/npm-debug.log
/web/yarn-error.log
/web/testem.log
/web/typings
# System Files
/web/.DS_Store
/web/Thumbs.db
####### IGNORE FOR THE SPRING BOOT API ##########
/api/target/
/api/!.mvn/wrapper/maven-wrapper.jar
/api/!**/src/main/**/target/
/api/!**/src/test/**/target/
### STS ###
/api/.apt_generated
/api/.classpath
/api/.factorypath
/api/.project
/api/.settings
/api/.springBeans
/api/.sts4-cache
### IntelliJ IDEA ###
.idea
/api/*.iws
/api/*.iml
/api/*.ipr
### VS Code ###
/api/.vscode/