-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
107 lines (90 loc) · 1.73 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
# Node.js dependencies
/node_modules
/.pnp
.pnp.js
# Testing coverage
/coverage
# Production build files
/build
# Miscellaneous system files
.DS_Store
# Environment variables
.env
.env.local
.env.development
.env.development.local
.env.test
.env.test.local
.env.production
.env.production.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# IDE/Editor configurations
.idea/
.idea/workspace.xml
*.iml
*.xml
# React-specific files
src/app/src/*.test.js # Skip tests unless you want to include them in version control
src/app/public/favicon.ico # If favicon.ico is customizable, ignore it if unnecessary
src/app/public/manifest.json # Ignore manifest if not required in your deployment
src/app/public/robots.txt # Ignore robots.txt if auto-generated
# Others
*.log
# Ignore Python compiled files
*.pyc
*.pyo
*.pyd
__pycache__/
*.cpython-311-*.so
# Ignore Google Cloud SDK related files
gcloud/
gcloud-*
.gcloudignore
.gcloud/
.cloudignore
.cloud/
.cloud-*
# Ignore Google Cloud Deployment Configs
*.yaml
*.json
*.cfg
*.manifest
*.snapshot
*.crc32c.manifest
*.cpython-311-*
gcloud-*.so
gcloud-*.pyc
# Ignore Google Cloud Build Logs and Artifacts
build/
dist/
node_modules/
firebase-debug.log
npm-debug.log
yarn-debug.log
yarn-error.log
package-lock.json
pnpm-lock.yaml
# Ignore Google Cloud Storage and Service Accounts
google-cloud-sdk/
gcloud-init/
gcloud-deploy/
credentials.json
service-account.json
# Ignore Terraform (if used for infrastructure)
.terraform/
terraform.tfstate
terraform.tfstate.backup
# Ignore Google Cloud Functions (if applicable)
functions/node_modules/
functions/.firebase/
functions/.runtimeconfig.json
functions/lib/
functions/dist/
# Ignore Google Cloud Run and Docker
Dockerfile
.dockerignore
*.tar.gz
*.csv