@minecraft-docker/mcctl 1.7.0 → 1.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/README.md +21 -20
  2. package/dist/commands/backup.d.ts +0 -1
  3. package/dist/commands/backup.d.ts.map +1 -1
  4. package/dist/commands/backup.js +2 -28
  5. package/dist/commands/backup.js.map +1 -1
  6. package/dist/commands/console/api.js +2 -2
  7. package/dist/commands/console/init.js +2 -2
  8. package/dist/commands/console/service.js +2 -2
  9. package/dist/commands/index.d.ts +0 -1
  10. package/dist/commands/index.d.ts.map +1 -1
  11. package/dist/commands/index.js +0 -1
  12. package/dist/commands/index.js.map +1 -1
  13. package/dist/commands/init.d.ts +0 -1
  14. package/dist/commands/init.d.ts.map +1 -1
  15. package/dist/commands/init.js +3 -342
  16. package/dist/commands/init.js.map +1 -1
  17. package/dist/index.js +10 -42
  18. package/dist/index.js.map +1 -1
  19. package/dist/lib/admin-config.js +2 -2
  20. package/package.json +9 -15
  21. package/scripts/create-server.sh +2 -1
  22. package/templates/.env.example +6 -6
  23. package/templates/ecosystem.config.js +3 -3
  24. package/CHANGELOG.md +0 -278
  25. package/dist/commands/update.d.ts +0 -13
  26. package/dist/commands/update.d.ts.map +0 -1
  27. package/dist/commands/update.js +0 -117
  28. package/dist/commands/update.js.map +0 -1
  29. package/dist/lib/update-checker.d.ts +0 -28
  30. package/dist/lib/update-checker.d.ts.map +0 -1
  31. package/dist/lib/update-checker.js +0 -210
  32. package/dist/lib/update-checker.js.map +0 -1
  33. package/templates/gitignore.template +0 -70
  34. package/templates/servers/_template/logs/.gitkeep +0 -0
  35. package/templates/servers/compose.template.yml +0 -8
  36. /package/{templates/servers/_template/data → scripts}/.gitkeep +0 -0
@@ -1,70 +0,0 @@
1
- # =============================================================================
2
- # Minecraft Platform .gitignore
3
- # =============================================================================
4
-
5
- # -----------------------------------------------------------------------------
6
- # Server directories (created by create-server.sh)
7
- # -----------------------------------------------------------------------------
8
- # Ignore all servers except template
9
- servers/*
10
- !servers/_template/
11
-
12
- # Server include list (auto-generated by create-server.sh)
13
- servers/compose.yml
14
-
15
- # -----------------------------------------------------------------------------
16
- # Server runtime data
17
- # -----------------------------------------------------------------------------
18
- # These are also ignored by the pattern above, but explicit for clarity
19
- servers/*/data/
20
- servers/*/logs/
21
-
22
- # -----------------------------------------------------------------------------
23
- # World data (managed separately, may be backed up to GitHub)
24
- # -----------------------------------------------------------------------------
25
- worlds/*
26
- !worlds/.locks/
27
-
28
- # -----------------------------------------------------------------------------
29
- # Backups
30
- # -----------------------------------------------------------------------------
31
- backups/
32
-
33
- # -----------------------------------------------------------------------------
34
- # Environment files with secrets
35
- # -----------------------------------------------------------------------------
36
- .env
37
- !.env.example
38
-
39
- # -----------------------------------------------------------------------------
40
- # Docker
41
- # -----------------------------------------------------------------------------
42
- *.log
43
-
44
- # -----------------------------------------------------------------------------
45
- # OS generated files
46
- # -----------------------------------------------------------------------------
47
- .DS_Store
48
- Thumbs.db
49
-
50
- # -----------------------------------------------------------------------------
51
- # IDE
52
- # -----------------------------------------------------------------------------
53
- .idea/
54
- .vscode/
55
- *.swp
56
- *.swo
57
-
58
- # -----------------------------------------------------------------------------
59
- # Task tracking (local only)
60
- # -----------------------------------------------------------------------------
61
- task.md
62
-
63
- # -----------------------------------------------------------------------------
64
- # PM2
65
- # -----------------------------------------------------------------------------
66
- # ecosystem.config.js is generated by mcctl console init
67
- # Keep template in templates/ but ignore in platform/
68
- .pm2/
69
- logs/
70
- pids/
File without changes
@@ -1,8 +0,0 @@
1
- # =============================================================================
2
- # Server Include List (managed automatically by create-server.sh)
3
- # =============================================================================
4
- # This file is modified by scripts/create-server.sh and scripts/delete-server.sh
5
- # Do NOT modify docker-compose.yml - only this file is updated for server changes
6
- # =============================================================================
7
-
8
- # Server includes are added below by create-server.sh