-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.gitignore
55 lines (45 loc) · 906 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
# Build outputs
build/
# Gradle files
/.gradle/
# Terraform files and directories
.terraform
*.tfplan
# Visual Studio Code and IntelliJ Idea files
.vscode/
.settings/
.idea/
# Eclipse BuildShip files (also used by Visual Studio Code)
# These files are generated by the 'eclipse' gradle plugin.
# To generate them run
# ./gradlew eclipse
# and to delete them run
# ./gradlew cleanEclipse
.project
.classpath
# BuildShip keeps creating compiled output in the 'bin'
# directory so let's ignore it
bin/
# Nyx files
.nyx-summary.txt
.nyx-state.yml
.nyx-state.yaml
.nyx-state.json
CHANGELOG.md
.nyx-*.*
!docs/main/docs/_includes/.nyx-*.*
# MacOS files
.DS_Store
# Helm chart dependencies
**/charts/*.tgz
# Generated docs for Helm and Terraform
docs/main/docs/_includes/helm
docs/main/docs/_includes/terraform
# Python files
__pycache__
*.egg-info
.pytest_cache/
htmlcov
.ignore/
# .env files
*.env