-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
108 lines (100 loc) · 1.4 KB
/
Copy path.gitignore
File metadata and controls
108 lines (100 loc) · 1.4 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Local Python environments and build products
.venv/
venv/
env/
__pycache__/
*.py[cod]
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.cache/
build/
dist/
# GoodLinks databases and SQLite sidecars (never add private libraries)
GoodLinks*.sqlite*
goodlinks*.sqlite*
GoodLinks*.db*
goodlinks*.db*
*.goodlinks.sqlite*
*.goodlinks.db*
*.sqlite
*.sqlite3
*.db
*.sqlite-*
*.db-*
*.sqlite-shm
*.sqlite-wal
*.db-shm
*.db-wal
# Loose GoodLinks exports (private libraries must stay local)
*GoodLinks*.json
*goodlinks*.json
*GoodLinks*.csv
*goodlinks*.csv
# Credentials and local API/environment files
.env
.env.*
*.env
.sync.env
!.sync.env.example
.envrc
*.api
*.apikey
api.json
api-*.json
api*.json
*.api.json
credentials.*
secret/
secrets/
secret
secrets
secret.*
secrets.*
*_secret
*_secret.*
*.secret
*.secrets
*.key
*.pem
token/
tokens/
token
tokens
token.*
tokens.*
*_token
*_token.*
*_tokens
*_tokens.*
*.token
*.tokens
config.json
config.local.json
# Generated EPUB and export output
*.epub
export/
exports/
output/
# Generated manifests and state
manifest.json
state.json
*.manifest
*.manifest.json
*.manifest.lock
*.state
*.state.json
# Logs and generated log directories
*.log
*.log.*
log/
logs/
# Project workflow state
.gnosis/
.tickets/
# Explicitly named synthetic fixtures/examples may be committed safely.
!tests/fixtures/example.com/
!tests/fixtures/example.com/**
!examples/example.com/
!examples/example.com/**