|
|
d3fec4b85a
|
🚀 MAJOR: Full migration to Just modules with modern features
BREAKING CHANGES:
- Complete restructure to Just module architecture (requires Just 1.31.0+)
- Command syntax changed: 'just postgres-sql' → 'just postgres sql'
- Import syntax changed: import → mod declarations
NEW FEATURES:
✨ Module-based architecture with optional modules
✨ Built-in Just colors ({{RED}}, {{GREEN}}, etc.) replace custom variables
✨ Enhanced [confirm] attributes for all destructive operations
✨ Organized [group('name')] attributes for better UX
✨ Modern justfile with comprehensive help system
✨ Updated documentation with migration guide
MODULES:
📦 postgres/ - PostgreSQL operations (sql, check, create-database, etc.)
📦 mysql/ - MySQL operations (sql, check, create-user, etc.)
📦 volumes/ - Volume management (clean-all, remove, list)
📦 container/ - Container operations (start, stop, logs, shell, exec)
📦 registry/ - Registry auth (login, logout, check)
📦 images/ - Image operations (build, push, pull, tag, clean)
USAGE:
just postgres sql "SELECT version();"
just volumes clean-all
just images build myapp
This is Just Commons v2.0 - a complete modernization using all of Just's latest features.
|
2025-09-27 02:27:53 +03:00 |
|
|
|
c359858ee9
|
Replace manual confirmations with [confirm] attribute in destructive commands
- Add [confirm] attribute to all destructive operations:
- volumes-clean-all, volumes-remove, volumes-remove-pattern
- postgres-drop-database, postgres-restore
- mysql-drop-database, mysql-restore
- Remove manual read -p confirmations and conditional logic
- Simplifies code and uses Just's built-in confirmation system
- Ensures consistent confirmation behavior across all destructive operations
This provides better UX and cleaner code using Just's native features.
|
2025-09-27 01:44:12 +03:00 |
|
|
|
30acfc658a
|
Initial commit: Add universal Just recipes
- container.just: Universal container operations (start, stop, logs, shell, exec, status)
- registry.just: GitHub Container Registry authentication
- images.just: Universal image build/push/pull operations
- README.md: Documentation and usage instructions
These recipes work universally across any project with containerfiles.
|
2025-09-26 21:14:43 +03:00 |
|