-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
145 lines (126 loc) · 4.3 KB
/
.gitignore
File metadata and controls
145 lines (126 loc) · 4.3 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# Minecraft Server .gitignore
# For Docker-based Paper/Spigot server with Multiverse
# =============================================================================
# World Data (EXCLUDE - too large, player-generated content)
# =============================================================================
data/world/
data/world_*/
data/*/
# Include (!=)
!data/plugins/
!data/bukkit.yml
!data/spigot.yml
!data/paper.yml
!data/paper-*.yml
# =============================================================================
# Plugin JARs (EXCLUDE - can be re-downloaded)
# =============================================================================
data/plugins/*.jar
# =============================================================================
# Plugin Data & Caches (EXCLUDE - generated at runtime)
# =============================================================================
data/plugins/**/cache/
data/plugins/**/logs/
data/plugins/**/database.db
data/plugins/**/*.db
data/plugins/**/*.db-*
data/plugins/**/h2/
data/plugins/**/userdata/
data/plugins/**/playerdata/
# Specific plugin runtime data
data/plugins/Geyser-Spigot/
data/plugins/floodgate/
data/plugins/floodgate/*.pem
data/plugins/ViaVersion/
data/plugins/spark/
data/plugins/bStats/
# =============================================================================
# Plugin Configs (INCLUDE - important for reproducibility)
# =============================================================================
!data/plugins/Multiverse-Core/
!data/plugins/Multiverse-Inventories/
!data/plugins/Multiverse-Portals/
!data/plugins/LuckPerms/
!data/plugins/**/config.yml
!data/plugins/**/settings.yml
!data/plugins/**/worlds.yml
!data/plugins/**/portals.yml
# But exclude databases and user data within config folders
data/plugins/**/luckperms-h2.mv.db
data/plugins/**/luckperms*.mv.db
data/plugins/**/luckperms.db
data/plugins/LuckPerms/storage/
data/plugins/LuckPerms/libs/
# Multiverse-Inventories player data (exclude individual player inventories)
data/plugins/Multiverse-Inventories/players/
data/plugins/Multiverse-Inventories/playernames.json
data/plugins/Multiverse-Inventories/worlds/**/*.json
data/plugins/Multiverse-Inventories/groups/default/
# =============================================================================
# Server Runtime Files (EXCLUDE)
# =============================================================================
data/logs/
data/crash-reports/
data/debug/
data/*.log
data/*.log.*
data/usercache.json
data/usernamecache.json
data/banned-*.json
data/whitelist.json
data/ops.json
data/session.lock
data/server.properties
data/.papermc-manifest.json
data/.rcon-cli.yaml
# =============================================================================
# Server Cache & Temp (EXCLUDE)
# =============================================================================
data/cache/
data/.paper-remapped/
data/libraries/
data/versions/
data/minecraft_server*.jar
# Plugin runtime metadata and caches
data/plugins/.paper-remapped/
data/plugins/.var-list-manifest.json
# =============================================================================
# Environment Files (EXCLUDE - may contain secrets)
# =============================================================================
.env
.env.local
*.env
# =============================================================================
# IDE & Editor Files
# =============================================================================
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# =============================================================================
# Docker
# =============================================================================
# Keep docker-compose.yml but exclude overrides
docker-compose.override.yml
# =============================================================================
# Backups (EXCLUDE)
# =============================================================================
*.tar.gz
*.zip
backup*/
backups/
# =============================================================================
# Documentation (INCLUDE)
# =============================================================================
!README.md
!SETUP.md
!*.md
# =============================================================================
# Scripts (INCLUDE)
# =============================================================================
!scripts/
!*.sh
!*.bash