-
Notifications
You must be signed in to change notification settings - Fork 12
/
.gitignore
45 lines (38 loc) · 950 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
# This file is centrally managed as a template file in https://github.com/canonical/solutions-engineering-automation
# To update the file:
# - Edit it in the canonical/solutions-engineering-automation repository.
# - Open a PR with the changes.
# - When the PR merges, the soleng-terraform bot will open a PR to the target repositories with the changes.
# Python Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Test files and directories
.pytest_cache/
.coverage
.tox
reports/
**/report/
htmlcov/
.mypy_cache
# python virtual environments (for local dev)
.venv
venv
env
# Build artefacts
output/
.build/
build/
*.charm
*.snap
# python build artefacts
deb_dist/
dist/
*.egg-info/
# Log files
*.log
# general backup files
*~
*.bak
# Note: for editor-specific files, please don't add them here, as they are specific to your environment, not the project.
# Instead, consider using a global gitignore on your workstation.