forked from Bulletdev/prostaff-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
279 lines (221 loc) · 5.12 KB
/
Copy path.gitignore
File metadata and controls
279 lines (221 loc) · 5.12 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'
# Ignore bundler config.
/.bundle
# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
# Ignore pidfiles, but keep the directory.
/tmp/pids/*
!/tmp/pids/
!/tmp/pids/.keep
# Ignore uploaded files in development.
/storage/*
!/storage/.keep
/tmp/storage/*
!/tmp/storage/
!/tmp/storage/.keep
# Ignore master key for decrypting credentials and more.
/config/master.key
# Ignore environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Ignore application configuration
/config/application.yml
# Ignore database configuration in development
/config/database.yml
# Ignore all node_modules
/node_modules
# Ignore Yarn integrity file
.yarn-integrity
# Ignore package-lock.json (if using npm)
package-lock.json
# Ignore yarn error log
yarn-error.log
# Ignore yarn cache
.yarn-cache/
# Ignore coverage reports
/coverage/
# Ignore RSpec output
/spec/examples.txt
# Ignore test coverage
coverage/
.coverage/
# Ignore simplecov
coverage.data
# Ignore RuboCop cache
.rubocop-yml-*
.rubocop_cache/
# Ignore annotate output
config/schema.rb.backup
# Ignore IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
# Ignore OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Ignore Redis dump file
dump.rdb
# Ignore log files
*.log
# Ignore temporary files
*.tmp
*.temp
# Ignore backup files
*.bak
*.backup
# Ignore compiled assets (if any)
/public/assets/
/public/packs/
/public/packs-test/
# Ignore Webpack output
/public/webpack/
# Ignore Webpack manifest
/public/webpack-manifest.json
# Ignore Rails credentials
/config/credentials/*.key
/config/credentials.yml.enc
# Ignore bootsnap cache
/tmp/bootsnap-*
# Ignore Spring files
/spring/*.pid
# Ignore Bullet gem output
bullet.log
# Ignore local database
*.sqlite3
*.sqlite3-journal
*.sqlite3-*
# Ignore secrets
secrets.yml
# Ignore API keys and sensitive data
*.key
*.pem
*.p12
# Ignore documentation generated by YARD
doc/
.yardoc/
# Ignore pow configuration
.powrc
.powenv
# Ignore rbenv version
.ruby-version
.ruby-gemset
# Ignore rvm files
.rvmrc
# Ignore CTags
tags
TAGS
# Ignore vim files
*.swp
*.swo
# Ignore emacs files
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
# Ignore local development files
.env.development
.env.test
# Docker
.dockerignore
COMMIT_GUIDE.md
DOCS/setup/FRONTEND_SETUP.md
DOCS/Implemented.md
backend_prompt.md
.claude
SETUP.md
DOCS/optimization/FINAL_PERFORMANCE_SUMMARY.md
DOCS/optimization/OPTIMIZATION_SUMMARY.md
DOCS/optimization/PERFORMANCE_OPTIMIZATION.md
DOCS/setup/QUICK_START.md
.claude.md
MVP_ACTION_PLAN.md
# Load testing results
/load_tests/results/
# Security testing reports
/security_tests/reports/
/security_tests/zap/wrk/*
!/security_tests/zap/wrk/.keep
# ZAP certificates and keys (NEVER commit!)
/security_tests/zap/*.cer
/security_tests/zap/*.key
/security_tests/zap/*.pem
/security_tests/zap/config/webswing.config
# Security scan reports (local)
brakeman-report.json
brakeman-report.html
semgrep-report.json
bundle-audit.txt
security_tests/security_tests/reports
# Production & Deployment
/deploy/ssl/*
!/deploy/ssl/.keep
/backups/*
!/backups/.keep
.env.staging
.env.production
#INTERN DOCS
DOCS/JIRA_IMPORT.csv
DOCS/JIRA_IMPORT_FIXED.csv
DOCS/JIRA_IMPORT_MINIMAL.csv
DOCS/RIOT_INTEGRATION_IMPLEMENTATION_PLAN.md
DOCS/FRONTEND_RIOT_INTEGRATION_PLAN.md
DOCS/FRONTEND_RIOT_MISSING_FEATURES.md
DOCS/JIRA_TASKS.md
/security_tests/reports/dependency-check/
/home/bullet/PROJETOS/prostaff-api/home/bullet/PROJETOS/prostaff-api/security_tests/reports/dependency-check/
# Travis CI (deprecated - using GitHub Actions)
travis.yml
.travis.yml
#reports
security_tests/scripts/security_tests/reports
./security_tests/scripts/security_tests/reports
/home/bullet/PROJETOS/prostaff-api/security_tests/reports
CHANGELOG_RIOT_IMPLEMENTATION.md
RIOT_API_IMPLEMENTATION.md
SECURITY_AUDIT_REPORT.md
SESSION_SUMMARY.md
TEST_ANALYSIS_REPORT.md
MODULAR_MIGRATION_PHASE1_SUMMARY.md
MODULAR_MONOLITH_MIGRATION_PLAN.md
app/modules/players/README.md
/League-Data-Scraping-And-Analytics-master/jsons
/League-Data-Scraping-And-Analytics-master/Pro/game
/League-Data-Scraping-And-Analytics-master/Pro/timeline
League-Data-Scraping-And-Analytics-master/ProStaff-Scraper/
DOCS/ELASTICSEARCH_SETUP.md
DOCS/deployment/QUICK_DEPLOY_VPS.md
# aditional rules
/DOCS/claude
codacyissues.md
/scripts
/DEVDOCS
.github/webhookgitcoolify.md
zgo.txt
oldsemgrep-report.json
.pentest/raw-headers-frontend.txt
.pentest/raw-headers-api.txt
/.reports
/.pentest/snapshots
#Ignore cursor AI rules
.cursor/rules/codacy.mdc
.pentest/reports