-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
41 lines (33 loc) · 910 Bytes
/
.gitignore
File metadata and controls
41 lines (33 loc) · 910 Bytes
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
# -----------------------------------------------------------------------------
# Colima Pulse — public repo hygiene
# -----------------------------------------------------------------------------
# macOS
.DS_Store
# Local env (never commit secrets or machine identity)
.env
.env.*
!/.env.example
# Local-only helper scripts (you still run them, but they are not published)
publish_github.sh
init_repo.sh
# Backups / artifacts
backups/
*.tar.gz
*.log
*.tmp
*.swp
*.bak
*.bak.*
# Container topology is local-only by default.
# Keep documentation + safe examples only.
containers/*
!containers/README.md
!containers/hello-world
# === Colima Pulse: containers/ secrets policy ===
# Deny-by-default: treat containers/ as a local secrets drop-zone.
containers/**
# Allow safe, tracked docs/templates
!containers/README.md
!containers/example-*.sh
!containers/template-*.sh
# === end containers policy ===