fast-clean-architecture 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fast_clean_architecture-1.0.0/.gitignore +962 -0
- fast_clean_architecture-1.0.0/CHANGELOG.md +86 -0
- fast_clean_architecture-1.0.0/CODE_OF_CONDUCT.md +132 -0
- fast_clean_architecture-1.0.0/CONTRIBUTING.md +423 -0
- fast_clean_architecture-1.0.0/LICENSE +21 -0
- fast_clean_architecture-1.0.0/PKG-INFO +541 -0
- fast_clean_architecture-1.0.0/README.md +498 -0
- fast_clean_architecture-1.0.0/TEMPLATE_VALIDATION_REFACTOR.md +225 -0
- fast_clean_architecture-1.0.0/examples/components-spec.yaml +107 -0
- fast_clean_architecture-1.0.0/examples/getting-started.md +647 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/__init__.py +24 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/cli.py +480 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/config.py +506 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/exceptions.py +63 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/generators/__init__.py +11 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/generators/component_generator.py +1039 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/generators/config_updater.py +308 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/generators/package_generator.py +174 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/generators/template_validator.py +546 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/generators/validation_config.py +75 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/generators/validation_metrics.py +193 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/__init__.py +7 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/__init__.py.j2 +26 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/api.py.j2 +65 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/command.py.j2 +26 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/entity.py.j2 +49 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/external.py.j2 +61 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/infrastructure_repository.py.j2 +69 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/model.py.j2 +38 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/query.py.j2 +26 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/repository.py.j2 +57 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/schemas.py.j2 +32 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/service.py.j2 +109 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/templates/value_object.py.j2 +34 -0
- fast_clean_architecture-1.0.0/fast_clean_architecture/utils.py +553 -0
- fast_clean_architecture-1.0.0/poetry.lock +1240 -0
- fast_clean_architecture-1.0.0/pyproject.toml +82 -0
- fast_clean_architecture-1.0.0/test_security_enhancements.py +149 -0
- fast_clean_architecture-1.0.0/tests/__init__.py +1 -0
- fast_clean_architecture-1.0.0/tests/conftest.py +105 -0
- fast_clean_architecture-1.0.0/tests/test_cli.py +585 -0
- fast_clean_architecture-1.0.0/tests/test_component_generator.py +422 -0
- fast_clean_architecture-1.0.0/tests/test_config.py +345 -0
- fast_clean_architecture-1.0.0/tests/test_cross_platform_compatibility.py +143 -0
- fast_clean_architecture-1.0.0/tests/test_integration.py +584 -0
- fast_clean_architecture-1.0.0/tests/test_security.py +491 -0
- fast_clean_architecture-1.0.0/tests/test_symlink_security.py +220 -0
- fast_clean_architecture-1.0.0/tests/test_template_security.py +197 -0
- fast_clean_architecture-1.0.0/tests/test_template_validation.py +351 -0
- fast_clean_architecture-1.0.0/tests/test_utils.py +324 -0
@@ -0,0 +1,962 @@
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
2
|
+
__pycache__/
|
3
|
+
*.py[cod]
|
4
|
+
*$py.class
|
5
|
+
|
6
|
+
# C extensions
|
7
|
+
*.so
|
8
|
+
|
9
|
+
# Distribution / packaging
|
10
|
+
.Python
|
11
|
+
build/
|
12
|
+
develop-eggs/
|
13
|
+
dist/
|
14
|
+
downloads/
|
15
|
+
eggs/
|
16
|
+
.eggs/
|
17
|
+
lib/
|
18
|
+
lib64/
|
19
|
+
parts/
|
20
|
+
sdist/
|
21
|
+
var/
|
22
|
+
wheels/
|
23
|
+
share/python-wheels/
|
24
|
+
*.egg-info/
|
25
|
+
.installed.cfg
|
26
|
+
*.egg
|
27
|
+
MANIFEST
|
28
|
+
|
29
|
+
# PyInstaller
|
30
|
+
# Usually these files are written by a python script from a template
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
32
|
+
*.manifest
|
33
|
+
*.spec
|
34
|
+
|
35
|
+
# Installer logs
|
36
|
+
pip-log.txt
|
37
|
+
pip-delete-this-directory.txt
|
38
|
+
|
39
|
+
# Unit test / coverage reports
|
40
|
+
htmlcov/
|
41
|
+
.tox/
|
42
|
+
.nox/
|
43
|
+
.coverage
|
44
|
+
.coverage.*
|
45
|
+
.cache
|
46
|
+
nosetests.xml
|
47
|
+
coverage.xml
|
48
|
+
*.cover
|
49
|
+
*.py,cover
|
50
|
+
.hypothesis/
|
51
|
+
.pytest_cache/
|
52
|
+
cover/
|
53
|
+
|
54
|
+
# Translations
|
55
|
+
*.mo
|
56
|
+
*.pot
|
57
|
+
|
58
|
+
# Django stuff:
|
59
|
+
*.log
|
60
|
+
local_settings.py
|
61
|
+
db.sqlite3
|
62
|
+
db.sqlite3-journal
|
63
|
+
|
64
|
+
# Flask stuff:
|
65
|
+
instance/
|
66
|
+
.webassets-cache
|
67
|
+
|
68
|
+
# Scrapy stuff:
|
69
|
+
.scrapy
|
70
|
+
|
71
|
+
# Sphinx documentation
|
72
|
+
docs/_build/
|
73
|
+
|
74
|
+
# PyBuilder
|
75
|
+
.pybuilder/
|
76
|
+
target/
|
77
|
+
|
78
|
+
# Jupyter Notebook
|
79
|
+
.ipynb_checkpoints
|
80
|
+
|
81
|
+
# IPython
|
82
|
+
profile_default/
|
83
|
+
ipython_config.py
|
84
|
+
|
85
|
+
# pyenv
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
88
|
+
# .python-version
|
89
|
+
|
90
|
+
# pipenv
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
94
|
+
# install all needed dependencies.
|
95
|
+
#Pipfile.lock
|
96
|
+
|
97
|
+
# poetry
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
100
|
+
# commonly ignored for libraries.
|
101
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
102
|
+
#poetry.lock
|
103
|
+
|
104
|
+
# pdm
|
105
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
106
|
+
#pdm.lock
|
107
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
108
|
+
# in version control.
|
109
|
+
# https://pdm.fming.dev/#use-with-ide
|
110
|
+
.pdm.toml
|
111
|
+
|
112
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
113
|
+
__pypackages__/
|
114
|
+
|
115
|
+
# Celery stuff
|
116
|
+
celerybeat-schedule
|
117
|
+
celerybeat.pid
|
118
|
+
|
119
|
+
# SageMath parsed files
|
120
|
+
*.sage.py
|
121
|
+
|
122
|
+
# Environments
|
123
|
+
.env
|
124
|
+
.venv
|
125
|
+
env/
|
126
|
+
venv/
|
127
|
+
ENV/
|
128
|
+
env.bak/
|
129
|
+
venv.bak/
|
130
|
+
|
131
|
+
# Spyder project settings
|
132
|
+
.spyderproject
|
133
|
+
.spyproject
|
134
|
+
|
135
|
+
# Rope project settings
|
136
|
+
.ropeproject
|
137
|
+
|
138
|
+
# mkdocs documentation
|
139
|
+
/site
|
140
|
+
|
141
|
+
# mypy
|
142
|
+
.mypy_cache/
|
143
|
+
.dmypy.json
|
144
|
+
dmypy.json
|
145
|
+
|
146
|
+
# Pyre type checker
|
147
|
+
.pyre/
|
148
|
+
|
149
|
+
# pytype static type analyzer
|
150
|
+
.pytype/
|
151
|
+
|
152
|
+
# Cython debug symbols
|
153
|
+
cython_debug/
|
154
|
+
|
155
|
+
# PyCharm
|
156
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
157
|
+
# be added to the global gitignore or merged into this file. For a more nuclear
|
158
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
159
|
+
.idea/
|
160
|
+
|
161
|
+
# VS Code
|
162
|
+
.vscode/
|
163
|
+
|
164
|
+
# Sublime Text
|
165
|
+
*.sublime-project
|
166
|
+
*.sublime-workspace
|
167
|
+
|
168
|
+
# Vim
|
169
|
+
*.swp
|
170
|
+
*.swo
|
171
|
+
*~
|
172
|
+
|
173
|
+
# Emacs
|
174
|
+
*~
|
175
|
+
\#*\#
|
176
|
+
/.emacs.desktop
|
177
|
+
/.emacs.desktop.lock
|
178
|
+
*.elc
|
179
|
+
auto-save-list
|
180
|
+
tramp
|
181
|
+
.\#*
|
182
|
+
|
183
|
+
# macOS
|
184
|
+
.DS_Store
|
185
|
+
.AppleDouble
|
186
|
+
.LSOverride
|
187
|
+
Icon
|
188
|
+
._*
|
189
|
+
.DocumentRevisions-V100
|
190
|
+
.fseventsd
|
191
|
+
.Spotlight-V100
|
192
|
+
.TemporaryItems
|
193
|
+
.Trashes
|
194
|
+
.VolumeIcon.icns
|
195
|
+
.com.apple.timemachine.donotpresent
|
196
|
+
.AppleDB
|
197
|
+
.AppleDesktop
|
198
|
+
Network Trash Folder
|
199
|
+
Temporary Items
|
200
|
+
.apdisk
|
201
|
+
|
202
|
+
# Windows
|
203
|
+
Thumbs.db
|
204
|
+
Thumbs.db:encryptable
|
205
|
+
ehthumbs.db
|
206
|
+
ehthumbs_vista.db
|
207
|
+
*.stackdump
|
208
|
+
[Dd]esktop.ini
|
209
|
+
$RECYCLE.BIN/
|
210
|
+
*.cab
|
211
|
+
*.msi
|
212
|
+
*.msix
|
213
|
+
*.msm
|
214
|
+
*.msp
|
215
|
+
*.lnk
|
216
|
+
|
217
|
+
# Linux
|
218
|
+
*~
|
219
|
+
.fuse_hidden*
|
220
|
+
.directory
|
221
|
+
.Trash-*
|
222
|
+
.nfs*
|
223
|
+
|
224
|
+
# Project-specific
|
225
|
+
# Configuration backups
|
226
|
+
*.backup.*
|
227
|
+
fca-config.yaml.backup.*
|
228
|
+
|
229
|
+
# Generated systems directory (if not tracking)
|
230
|
+
# systems/
|
231
|
+
|
232
|
+
# Debug files
|
233
|
+
debug_*.py
|
234
|
+
|
235
|
+
# Temporary files
|
236
|
+
*.tmp
|
237
|
+
*.temp
|
238
|
+
|
239
|
+
# Log files
|
240
|
+
*.log
|
241
|
+
|
242
|
+
# Local development files
|
243
|
+
local_*
|
244
|
+
dev_*
|
245
|
+
|
246
|
+
# Test artifacts
|
247
|
+
.coverage.*
|
248
|
+
.pytest_cache/
|
249
|
+
htmlcov/
|
250
|
+
|
251
|
+
# Documentation builds
|
252
|
+
docs/_build/
|
253
|
+
docs/build/
|
254
|
+
|
255
|
+
# Package builds
|
256
|
+
build/
|
257
|
+
dist/
|
258
|
+
*.egg-info/
|
259
|
+
|
260
|
+
# Virtual environments
|
261
|
+
.venv/
|
262
|
+
venv/
|
263
|
+
env/
|
264
|
+
.env
|
265
|
+
|
266
|
+
# IDE and editor files
|
267
|
+
.vscode/
|
268
|
+
.idea/
|
269
|
+
*.sublime-*
|
270
|
+
|
271
|
+
# OS generated files
|
272
|
+
.DS_Store
|
273
|
+
Thumbs.db
|
274
|
+
|
275
|
+
# Backup files
|
276
|
+
*~
|
277
|
+
*.bak
|
278
|
+
*.backup
|
279
|
+
|
280
|
+
# Temporary and cache files
|
281
|
+
*.cache
|
282
|
+
*.tmp
|
283
|
+
__pycache__/
|
284
|
+
*.pyc
|
285
|
+
*.pyo
|
286
|
+
*.pyd
|
287
|
+
|
288
|
+
# Security and secrets
|
289
|
+
.env.local
|
290
|
+
.env.*.local
|
291
|
+
secrets.yaml
|
292
|
+
secrets.json
|
293
|
+
*.key
|
294
|
+
*.pem
|
295
|
+
*.p12
|
296
|
+
*.pfx
|
297
|
+
|
298
|
+
# Database files
|
299
|
+
*.db
|
300
|
+
*.sqlite
|
301
|
+
*.sqlite3
|
302
|
+
|
303
|
+
# Compiled files
|
304
|
+
*.com
|
305
|
+
*.class
|
306
|
+
*.dll
|
307
|
+
*.exe
|
308
|
+
*.o
|
309
|
+
*.so
|
310
|
+
|
311
|
+
# Archives
|
312
|
+
*.7z
|
313
|
+
*.dmg
|
314
|
+
*.gz
|
315
|
+
*.iso
|
316
|
+
*.jar
|
317
|
+
*.rar
|
318
|
+
*.tar
|
319
|
+
*.zip
|
320
|
+
|
321
|
+
# Node.js (if using any JS tools)
|
322
|
+
node_modules/
|
323
|
+
npm-debug.log*
|
324
|
+
yarn-debug.log*
|
325
|
+
yarn-error.log*
|
326
|
+
|
327
|
+
# Docker
|
328
|
+
.dockerignore
|
329
|
+
Dockerfile.local
|
330
|
+
docker-compose.override.yml
|
331
|
+
|
332
|
+
# Terraform (if using infrastructure as code)
|
333
|
+
*.tfstate
|
334
|
+
*.tfstate.*
|
335
|
+
.terraform/
|
336
|
+
.terraform.lock.hcl
|
337
|
+
|
338
|
+
# AWS
|
339
|
+
.aws/
|
340
|
+
|
341
|
+
# Google Cloud
|
342
|
+
.gcloud/
|
343
|
+
|
344
|
+
# Azure
|
345
|
+
.azure/
|
346
|
+
|
347
|
+
# Kubernetes
|
348
|
+
*.kubeconfig
|
349
|
+
|
350
|
+
# Helm
|
351
|
+
*.tgz
|
352
|
+
|
353
|
+
# Local configuration overrides
|
354
|
+
local.yaml
|
355
|
+
local.json
|
356
|
+
local.toml
|
357
|
+
|
358
|
+
# Performance profiling
|
359
|
+
*.prof
|
360
|
+
*.pstats
|
361
|
+
|
362
|
+
# Memory dumps
|
363
|
+
*.hprof
|
364
|
+
*.dump
|
365
|
+
|
366
|
+
# Jupyter notebooks checkpoints
|
367
|
+
.ipynb_checkpoints/
|
368
|
+
|
369
|
+
# R
|
370
|
+
.Rhistory
|
371
|
+
.RData
|
372
|
+
.Ruserdata
|
373
|
+
|
374
|
+
# MATLAB
|
375
|
+
*.asv
|
376
|
+
*.m~
|
377
|
+
|
378
|
+
# LaTeX
|
379
|
+
*.aux
|
380
|
+
*.bbl
|
381
|
+
*.blg
|
382
|
+
*.fdb_latexmk
|
383
|
+
*.fls
|
384
|
+
*.log
|
385
|
+
*.out
|
386
|
+
*.synctex.gz
|
387
|
+
*.toc
|
388
|
+
|
389
|
+
# Backup files from editors
|
390
|
+
*~
|
391
|
+
*.orig
|
392
|
+
*.rej
|
393
|
+
|
394
|
+
# Patch files
|
395
|
+
*.patch
|
396
|
+
*.diff
|
397
|
+
|
398
|
+
# Generated documentation
|
399
|
+
_build/
|
400
|
+
_static/
|
401
|
+
_templates/
|
402
|
+
|
403
|
+
# Local development overrides
|
404
|
+
override.yaml
|
405
|
+
override.json
|
406
|
+
override.toml
|
407
|
+
|
408
|
+
# Fast Clean Architecture specific
|
409
|
+
# Uncomment if you don't want to track generated systems
|
410
|
+
# systems/
|
411
|
+
|
412
|
+
# Configuration file backups (already covered above but being explicit)
|
413
|
+
fca-config.yaml.backup*
|
414
|
+
|
415
|
+
# Any local test configurations
|
416
|
+
test-config.yaml
|
417
|
+
test-config.json
|
418
|
+
|
419
|
+
# Local development scripts
|
420
|
+
dev-*.py
|
421
|
+
test-*.py
|
422
|
+
local-*.py
|
423
|
+
|
424
|
+
# Temporary generation outputs
|
425
|
+
temp_generation/
|
426
|
+
.temp_generation/
|
427
|
+
|
428
|
+
# IDE workspace files
|
429
|
+
*.code-workspace
|
430
|
+
|
431
|
+
# JetBrains IDEs
|
432
|
+
.idea/
|
433
|
+
*.iml
|
434
|
+
*.ipr
|
435
|
+
*.iws
|
436
|
+
|
437
|
+
# Eclipse
|
438
|
+
.project
|
439
|
+
.classpath
|
440
|
+
.settings/
|
441
|
+
|
442
|
+
# NetBeans
|
443
|
+
nbproject/
|
444
|
+
build.xml
|
445
|
+
manifest.mf
|
446
|
+
|
447
|
+
# Xcode
|
448
|
+
*.xcodeproj/
|
449
|
+
*.xcworkspace/
|
450
|
+
|
451
|
+
# Android Studio
|
452
|
+
*.iml
|
453
|
+
.gradle/
|
454
|
+
local.properties
|
455
|
+
|
456
|
+
# Flutter
|
457
|
+
.flutter-plugins
|
458
|
+
.flutter-plugins-dependencies
|
459
|
+
|
460
|
+
# React Native
|
461
|
+
.expo/
|
462
|
+
|
463
|
+
# Cordova
|
464
|
+
platforms/
|
465
|
+
plugins/
|
466
|
+
www/
|
467
|
+
|
468
|
+
# Ionic
|
469
|
+
$IONIC_TMP/
|
470
|
+
|
471
|
+
# Capacitor
|
472
|
+
android/
|
473
|
+
ios/
|
474
|
+
|
475
|
+
# Electron
|
476
|
+
out/
|
477
|
+
|
478
|
+
# Next.js
|
479
|
+
.next/
|
480
|
+
|
481
|
+
# Nuxt.js
|
482
|
+
.nuxt/
|
483
|
+
dist/
|
484
|
+
|
485
|
+
# Gatsby
|
486
|
+
public/
|
487
|
+
.cache/
|
488
|
+
|
489
|
+
# Svelte
|
490
|
+
/build/
|
491
|
+
/functions/
|
492
|
+
|
493
|
+
# Storybook
|
494
|
+
storybook-static/
|
495
|
+
|
496
|
+
# FuseBox
|
497
|
+
.fusebox/
|
498
|
+
|
499
|
+
# DynamoDB Local
|
500
|
+
.dynamodb/
|
501
|
+
|
502
|
+
# TernJS
|
503
|
+
.tern-port
|
504
|
+
|
505
|
+
# Stores VSCode versions used for testing VSCode extensions
|
506
|
+
.vscode-test/
|
507
|
+
|
508
|
+
# Yarn Integrity file
|
509
|
+
.yarn-integrity
|
510
|
+
|
511
|
+
# dotenv environment variables file
|
512
|
+
.env.test
|
513
|
+
.env.production
|
514
|
+
|
515
|
+
# parcel-bundler cache
|
516
|
+
.cache/
|
517
|
+
.parcel-cache/
|
518
|
+
|
519
|
+
# Snowpack dependency directory
|
520
|
+
web_modules/
|
521
|
+
|
522
|
+
# Rollup.js default build output
|
523
|
+
dist/
|
524
|
+
|
525
|
+
# Temporary folders
|
526
|
+
tmp/
|
527
|
+
temp/
|
528
|
+
|
529
|
+
# Runtime data
|
530
|
+
pids
|
531
|
+
*.pid
|
532
|
+
*.seed
|
533
|
+
*.pid.lock
|
534
|
+
|
535
|
+
# Coverage directory used by tools like istanbul
|
536
|
+
coverage/
|
537
|
+
*.lcov
|
538
|
+
|
539
|
+
# nyc test coverage
|
540
|
+
.nyc_output
|
541
|
+
|
542
|
+
# Grunt intermediate storage
|
543
|
+
.grunt
|
544
|
+
|
545
|
+
# Bower dependency directory
|
546
|
+
bower_components
|
547
|
+
|
548
|
+
# node-waf configuration
|
549
|
+
.lock-wscript
|
550
|
+
|
551
|
+
# Compiled binary addons
|
552
|
+
build/Release
|
553
|
+
|
554
|
+
# Dependency directories
|
555
|
+
jspm_packages/
|
556
|
+
|
557
|
+
# TypeScript cache
|
558
|
+
*.tsbuildinfo
|
559
|
+
|
560
|
+
# Optional npm cache directory
|
561
|
+
.npm
|
562
|
+
|
563
|
+
# Optional eslint cache
|
564
|
+
.eslintcache
|
565
|
+
|
566
|
+
# Microbundle cache
|
567
|
+
.rpt2_cache/
|
568
|
+
.rts2_cache_cjs/
|
569
|
+
.rts2_cache_es/
|
570
|
+
.rts2_cache_umd/
|
571
|
+
|
572
|
+
# Optional REPL history
|
573
|
+
.node_repl_history
|
574
|
+
|
575
|
+
# Output of 'npm pack'
|
576
|
+
*.tgz
|
577
|
+
|
578
|
+
# Yarn Integrity file
|
579
|
+
.yarn-integrity
|
580
|
+
|
581
|
+
# dotenv environment variables file
|
582
|
+
.env
|
583
|
+
.env.test
|
584
|
+
|
585
|
+
# parcel-bundler cache (https://parceljs.org/)
|
586
|
+
.cache
|
587
|
+
.parcel-cache
|
588
|
+
|
589
|
+
# Next.js build output
|
590
|
+
.next
|
591
|
+
|
592
|
+
# Nuxt.js build / generate output
|
593
|
+
.nuxt
|
594
|
+
dist
|
595
|
+
|
596
|
+
# Gatsby files
|
597
|
+
.cache/
|
598
|
+
public
|
599
|
+
|
600
|
+
# Storybook build outputs
|
601
|
+
.out
|
602
|
+
.storybook-out
|
603
|
+
|
604
|
+
# Temporary folders
|
605
|
+
tmp/
|
606
|
+
temp/
|
607
|
+
|
608
|
+
# Editor directories and files
|
609
|
+
.vscode/
|
610
|
+
!.vscode/extensions.json
|
611
|
+
.idea
|
612
|
+
*.suo
|
613
|
+
*.ntvs*
|
614
|
+
*.njsproj
|
615
|
+
*.sln
|
616
|
+
*.sw?
|
617
|
+
|
618
|
+
# OS generated files
|
619
|
+
.DS_Store
|
620
|
+
.DS_Store?
|
621
|
+
._*
|
622
|
+
.Spotlight-V100
|
623
|
+
.Trashes
|
624
|
+
ehthumbs.db
|
625
|
+
Thumbs.db
|
626
|
+
|
627
|
+
# Logs
|
628
|
+
logs
|
629
|
+
*.log
|
630
|
+
npm-debug.log*
|
631
|
+
yarn-debug.log*
|
632
|
+
yarn-error.log*
|
633
|
+
lerna-debug.log*
|
634
|
+
|
635
|
+
# Diagnostic reports (https://nodejs.org/api/report.html)
|
636
|
+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
637
|
+
|
638
|
+
# Runtime data
|
639
|
+
pids
|
640
|
+
*.pid
|
641
|
+
*.seed
|
642
|
+
*.pid.lock
|
643
|
+
|
644
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
645
|
+
lib-cov
|
646
|
+
|
647
|
+
# Coverage directory used by tools like istanbul
|
648
|
+
coverage
|
649
|
+
*.lcov
|
650
|
+
|
651
|
+
# nyc test coverage
|
652
|
+
.nyc_output
|
653
|
+
|
654
|
+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
655
|
+
.grunt
|
656
|
+
|
657
|
+
# Bower dependency directory (https://bower.io/)
|
658
|
+
bower_components
|
659
|
+
|
660
|
+
# node-waf configuration
|
661
|
+
.lock-wscript
|
662
|
+
|
663
|
+
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
664
|
+
build/Release
|
665
|
+
|
666
|
+
# Dependency directories
|
667
|
+
node_modules/
|
668
|
+
jspm_packages/
|
669
|
+
|
670
|
+
# Snowpack dependency directory (https://snowpack.dev/)
|
671
|
+
web_modules/
|
672
|
+
|
673
|
+
# TypeScript cache
|
674
|
+
*.tsbuildinfo
|
675
|
+
|
676
|
+
# Optional npm cache directory
|
677
|
+
.npm
|
678
|
+
|
679
|
+
# Optional eslint cache
|
680
|
+
.eslintcache
|
681
|
+
|
682
|
+
# Microbundle cache
|
683
|
+
.rpt2_cache/
|
684
|
+
.rts2_cache_cjs/
|
685
|
+
.rts2_cache_es/
|
686
|
+
.rts2_cache_umd/
|
687
|
+
|
688
|
+
# Optional REPL history
|
689
|
+
.node_repl_history
|
690
|
+
|
691
|
+
# Output of 'npm pack'
|
692
|
+
*.tgz
|
693
|
+
|
694
|
+
# Yarn Integrity file
|
695
|
+
.yarn-integrity
|
696
|
+
|
697
|
+
# dotenv environment variables file
|
698
|
+
.env
|
699
|
+
.env.test
|
700
|
+
.env.production
|
701
|
+
|
702
|
+
# parcel-bundler cache (https://parceljs.org/)
|
703
|
+
.cache
|
704
|
+
.parcel-cache
|
705
|
+
|
706
|
+
# Next.js build output
|
707
|
+
.next
|
708
|
+
out
|
709
|
+
|
710
|
+
# Nuxt.js build / generate output
|
711
|
+
.nuxt
|
712
|
+
dist
|
713
|
+
|
714
|
+
# Gatsby files
|
715
|
+
.cache/
|
716
|
+
# Comment in the public line in if your project uses Gatsby and not Next.js
|
717
|
+
# https://nextjs.org/blog/next-9-1#public-directory-support
|
718
|
+
# public
|
719
|
+
|
720
|
+
# Storybook build outputs
|
721
|
+
.out
|
722
|
+
.storybook-out
|
723
|
+
|
724
|
+
# Rollup.js default build output
|
725
|
+
dist/
|
726
|
+
|
727
|
+
# Uncomment these if you have a monorepo
|
728
|
+
# packages/*/lib
|
729
|
+
# packages/*/dist
|
730
|
+
|
731
|
+
# Serverless directories
|
732
|
+
.serverless/
|
733
|
+
|
734
|
+
# FuseBox cache
|
735
|
+
.fusebox/
|
736
|
+
|
737
|
+
# DynamoDB Local files
|
738
|
+
.dynamodb/
|
739
|
+
|
740
|
+
# TernJS port file
|
741
|
+
.tern-port
|
742
|
+
|
743
|
+
# Stores VSCode versions used for testing VSCode extensions
|
744
|
+
.vscode-test/
|
745
|
+
|
746
|
+
# yarn v2
|
747
|
+
.yarn/cache
|
748
|
+
.yarn/unplugged
|
749
|
+
.yarn/build-state.yml
|
750
|
+
.yarn/install-state.gz
|
751
|
+
.pnp.*
|
752
|
+
|
753
|
+
# IntelliJ based IDEs
|
754
|
+
.idea
|
755
|
+
|
756
|
+
# Finder (MacOS)
|
757
|
+
.DS_Store
|
758
|
+
|
759
|
+
# VS Code
|
760
|
+
.vscode
|
761
|
+
|
762
|
+
# Windows
|
763
|
+
Thumbs.db
|
764
|
+
|
765
|
+
# Vim
|
766
|
+
*.swp
|
767
|
+
*.swo
|
768
|
+
|
769
|
+
# backup files
|
770
|
+
*~
|
771
|
+
|
772
|
+
# Generated files
|
773
|
+
DIST_TAGS
|
774
|
+
LOGS
|
775
|
+
|
776
|
+
# Local env files
|
777
|
+
.env*.local
|
778
|
+
|
779
|
+
# Vercel
|
780
|
+
.vercel
|
781
|
+
|
782
|
+
# Turbo
|
783
|
+
.turbo
|
784
|
+
|
785
|
+
# Sentry
|
786
|
+
.sentryclirc
|
787
|
+
|
788
|
+
# Wrangler
|
789
|
+
.dev.vars
|
790
|
+
|
791
|
+
# Cloudflare
|
792
|
+
wrangler.toml
|
793
|
+
|
794
|
+
# Supabase
|
795
|
+
.branches
|
796
|
+
.temp
|
797
|
+
|
798
|
+
# Vite
|
799
|
+
dist-ssr
|
800
|
+
*.local
|
801
|
+
|
802
|
+
# Rollup
|
803
|
+
.rollup.cache
|
804
|
+
|
805
|
+
# SvelteKit
|
806
|
+
.svelte-kit
|
807
|
+
|
808
|
+
# Astro
|
809
|
+
dist/
|
810
|
+
.astro/
|
811
|
+
|
812
|
+
# Remix
|
813
|
+
build/
|
814
|
+
public/build/
|
815
|
+
|
816
|
+
# Solid
|
817
|
+
dist/
|
818
|
+
|
819
|
+
# Qwik
|
820
|
+
dist/
|
821
|
+
lib/
|
822
|
+
.qwik/
|
823
|
+
|
824
|
+
# Angular
|
825
|
+
dist/
|
826
|
+
tmp/
|
827
|
+
out-tsc/
|
828
|
+
bazel-out/
|
829
|
+
|
830
|
+
# React
|
831
|
+
build/
|
832
|
+
|
833
|
+
# Vue
|
834
|
+
dist/
|
835
|
+
|
836
|
+
# Ember
|
837
|
+
dist/
|
838
|
+
tmp/
|
839
|
+
|
840
|
+
# Meteor
|
841
|
+
.meteor/
|
842
|
+
|
843
|
+
# Cordova
|
844
|
+
platforms/
|
845
|
+
plugins/
|
846
|
+
www/
|
847
|
+
|
848
|
+
# Ionic
|
849
|
+
$IONIC_TMP
|
850
|
+
|
851
|
+
# Capacitor
|
852
|
+
android/
|
853
|
+
ios/
|
854
|
+
|
855
|
+
# Tauri
|
856
|
+
src-tauri/target/
|
857
|
+
|
858
|
+
# Flutter
|
859
|
+
.dart_tool/
|
860
|
+
.flutter-plugins
|
861
|
+
.flutter-plugins-dependencies
|
862
|
+
.packages
|
863
|
+
.pub-cache/
|
864
|
+
.pub/
|
865
|
+
build/
|
866
|
+
|
867
|
+
# Unity
|
868
|
+
[Ll]ibrary/
|
869
|
+
[Tt]emp/
|
870
|
+
[Oo]bj/
|
871
|
+
[Bb]uild/
|
872
|
+
[Bb]uilds/
|
873
|
+
[Ll]ogs/
|
874
|
+
[Uu]ser[Ss]ettings/
|
875
|
+
|
876
|
+
# MemoryCaptures can get excessive in size.
|
877
|
+
# They also could contain extremely sensitive data
|
878
|
+
[Mm]emoryCaptures/
|
879
|
+
|
880
|
+
# Asset meta data should only be ignored when the corresponding asset is also ignored
|
881
|
+
!/[Aa]ssets/**/*.meta
|
882
|
+
|
883
|
+
# Uncomment this line if you wish to ignore the asset store tools plugin
|
884
|
+
# /[Aa]ssets/AssetStoreTools*
|
885
|
+
|
886
|
+
# Autogenerated Jetbrains Rider plugin
|
887
|
+
[Aa]ssets/Plugins/Editor/JetBrains*
|
888
|
+
|
889
|
+
# Visual Studio cache directory
|
890
|
+
.vs/
|
891
|
+
|
892
|
+
# Gradle files
|
893
|
+
.gradle/
|
894
|
+
build/
|
895
|
+
|
896
|
+
# Local configuration file (sdk path, etc)
|
897
|
+
local.properties
|
898
|
+
|
899
|
+
# Android Studio Navigation editor temp files
|
900
|
+
.navigation/
|
901
|
+
|
902
|
+
# Android Studio captures folder
|
903
|
+
captures/
|
904
|
+
|
905
|
+
# IntelliJ
|
906
|
+
*.iml
|
907
|
+
.idea/workspace.xml
|
908
|
+
.idea/tasks.xml
|
909
|
+
.idea/gradle.xml
|
910
|
+
.idea/assetWizardSettings.xml
|
911
|
+
.idea/dictionaries
|
912
|
+
.idea/libraries
|
913
|
+
# Android Studio 3 in .gitignore file.
|
914
|
+
.idea/caches
|
915
|
+
.idea/modules.xml
|
916
|
+
# Comment next line if keeping position of elements in Navigation Editor is desired
|
917
|
+
.idea/navEditor.xml
|
918
|
+
|
919
|
+
# Keystore files
|
920
|
+
# Uncomment the following lines if you do not want to check your keystore files in.
|
921
|
+
#*.jks
|
922
|
+
#*.keystore
|
923
|
+
|
924
|
+
# External native build folder generated in Android Studio 2.2 and later
|
925
|
+
.externalNativeBuild
|
926
|
+
.cxx/
|
927
|
+
|
928
|
+
# Google Services (e.g. APIs or Firebase)
|
929
|
+
# google-services.json
|
930
|
+
|
931
|
+
# Freeline
|
932
|
+
freeline.py
|
933
|
+
freeline/
|
934
|
+
freeline_project_description.json
|
935
|
+
|
936
|
+
# fastlane
|
937
|
+
fastlane/report.xml
|
938
|
+
fastlane/Preview.html
|
939
|
+
fastlane/screenshots
|
940
|
+
fastlane/test_output
|
941
|
+
fastlane/readme.md
|
942
|
+
|
943
|
+
# Version control
|
944
|
+
.svn/
|
945
|
+
|
946
|
+
# Temporary files created by R markdown
|
947
|
+
*.utf8.md
|
948
|
+
*.knit.md
|
949
|
+
|
950
|
+
# R Environment Variables
|
951
|
+
.Renviron
|
952
|
+
|
953
|
+
# pkgdown site
|
954
|
+
docs/
|
955
|
+
|
956
|
+
# translation temp files
|
957
|
+
po/*~
|
958
|
+
|
959
|
+
# RStudio Connect folder
|
960
|
+
rsconnect/
|
961
|
+
|
962
|
+
# End of https://www.toptal.com/developers/gitignore
|