We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83bb4f0 commit 88517a7Copy full SHA for 88517a7
33 files changed
.dockerignore
@@ -0,0 +1,70 @@
1
+# Dependencies
2
+node_modules/
3
+.pnp
4
+.pnp.js
5
+
6
+# Testing
7
+coverage/
8
+.nyc_output/
9
10
+# Production builds
11
+dist/
12
+build/
13
+electron-dist/
14
+.expo/
15
+.expo-shared/
16
17
+# Mobile
18
+android/
19
+ios/
20
+.gradle/
21
22
+# Misc
23
+.DS_Store
24
+*.pem
25
+.env
26
+.env.local
27
+.env.development.local
28
+.env.test.local
29
+.env.production.local
30
31
+# Logs
32
+npm-debug.log*
33
+yarn-debug.log*
34
+yarn-error.log*
35
+lerna-debug.log*
36
37
+# Editor directories
38
+.vscode/
39
+.idea/
40
+*.swp
41
+*.swo
42
+*~
43
44
+# Git
45
+.git/
46
+.gitignore
47
48
+# Documentation
49
+docs/
50
+*.md
51
+!README.md
52
53
+# CI/CD
54
+.github/
55
56
+# Secrets and keys
57
+*.p8
58
59
+*.key
60
+*.p12
61
+google-services.json
62
+GoogleService-Info.plist
63
64
+# Temporary files
65
+tmp/
66
+temp/
67
+*.tmp
68
69
+# OS files
70
+Thumbs.db
0 commit comments