-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
88 lines (72 loc) · 1.85 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
# Dependency directories
/node_modules/
/yarn-error.log
# Production build files
/dist/
/build/
# Compiled output
/out-tsc/
/bazel-out/
# Debug log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Firebase files that should not be included in public repos
# Ignoring sensitive Firebase and environment configuration files
**/firebase.json
**/firestore.indexes.json
**/firestore.rules
**/.firebaserc
**/storage.rules
**/crashlytics-build.properties
**/google-services.json
/.firebase/
# Ignoring local .env files that can contain sensitive environment variables
**/.env
**/.env.local
**/.env.development.local
**/.env.test.local
**/.env.production.local
# Local Environment files - typically you should replace these with .example files
# that developers can copy and configure for their environments
**/src/environments/environment.prod.ts
**/src/environments/environment.ts
# Ignore service files if they contain sensitive logic or API keys
# You may provide example files for reference
**/src/app/data.service.ts
**/src/app/wallet.service.ts
# Server-side code that may contain sensitive information
**/server.ts
# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# Visual Studio Code
# Include settings files if they do not contain sensitive information, otherwise ignore
.vscode/
# !.vscode/settings.json
# !.vscode/tasks.json
# !.vscode/launch.json
# !.vscode/extensions.json
# History of local files
.history
# Miscellaneous caches and lock files that should not be committed
/.angular/cache
.sass-cache/
/connect.lock
/coverage/
/libpeerconnection.log
/testem.log
/typings/
# System files
.DS_Store
Thumbs.db
# If using yarn, uncomment this to ignore the yarn lock file
# yarn.lock
# If using npm and there are specific reasons to exclude package-lock.json,
# uncomment this to ignore the npm lock file
# package-lock.json