-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitignore
82 lines (64 loc) · 912 Bytes
/
.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
# Terraform
*.tfstate*
.terraform*
# Lambda bundles
*.zip
# Build directories
dist
build
venv
.venv
stage
# Python stuff
__pycache__
*.eggs
*.egg-info
# Test files
.coverage
.coverage.*
htmlcov
.pytest_cache
.temp
test-report.xml
# VSCode
.vscode
# JetBrains
**/.idea
**/.DS_Store
# Coverage files
coverage.xml
# Linting and fixers
.flake8
.isort.cfg
.ruff_cache
# Exclude autogenerated test files
engine/tests/data/auth.json
# Exclude .env files
.env.local
.env.development.local
.env.test.local
.env.production.local
.env*.local*
*/.env
# Exclude vim .swp files
*.swp
# UI
# dependencies
/ui/node_modules
/ui/.pnp
/ui/**/.pnp.js
# testing
/ui/coverage
/ui/test-report
# misc
/ui/**/.eslintcache
/ui/**/npm-debug.log*
/ui/**/yarn-debug.log*
/ui/**/yarn-error.log*
# i18n transients
/ui/src/locale/_build/
/ui/src/locale/**/*.*js
# generated static files
/ui/public/api/
# linting
/ui/hadolint