-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
95 lines (78 loc) · 1.92 KB
/
.dockerignore
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
# compiled output
backend-nest/dist
backend-nest/dist-angular
backend-nest/node_modules
# Logs
backend-nest/logs
backend-nest/*.log
backend-nest/npm-debug.log*
backend-nest/pnpm-debug.log*
backend-nest/yarn-debug.log*
backend-nest/yarn-error.log*
backend-nest/lerna-debug.log*
# -------------------------------------------------------------------------------
# See http://help.github.com/ignore-files/ for more about ignoring files.
# Compiled output
frontend-angular/dist
frontend-angular/dist-angular
frontend-angular/tmp
frontend-angular/out-tsc
frontend-angular/bazel-out
# Node
frontend-angular/node_modules
frontend-angular/npm-debug.log
frontend-angular/yarn-error.log
# IDEs and editors
frontend-angular/.idea/
frontend-angular/.project
frontend-angular/.classpath
frontend-angular/.c9/
frontend-angular/*.launch
frontend-angular/.settings/
frontend-angular/*.sublime-workspace
# Visual Studio Code
frontend-angular/.vscode/*
frontend-angular/!.vscode/settings.json
frontend-angular/!.vscode/tasks.json
frontend-angular/!.vscode/launch.json
frontend-angular/!.vscode/extensions.json
frontend-angular/.history/*
# Miscellaneous
frontend-angular/.angular/cache
frontend-angular/.sass-cache/
frontend-angular/connect.lock
frontend-angular/coverage
frontend-angular/libpeerconnection.log
frontend-angular/testem.log
frontend-angular/typings
# System files
frontend-angular/.DS_Store
frontend-angular/Thumbs.db
frontend-angular/src/assets/person-images/*-*.*
# --------------------------------------------
# See http://help.github.com/ignore-files/ for more about ignoring files.
# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*
# System files
.DS_Store
Thumbs.db
documentation
.git
.gitignore
backend-nest/.gitignore
frontend-angular/.gitignore
docker-compose*
Dockerfile*