A modern desktop application that helps developers quickly manage and execute various commands and scripts
中文文档 | English
- 🚀 Quick Launch - Create and run configurations with one click, no need to memorize complex commands
- ⚡ Real-time Output - View command execution results in real-time with multi-tab support
- 📝 Configuration Management - Support for advanced options like working directory and environment variables
- 🕒 History Tracking - Automatically save run history for easy re-execution
- 🎨 Modern UI - Beautiful dark theme interface built with Naive UI
- 💾 Persistent Storage - Configurations and history data are automatically saved and persist across restarts
- 🖥️ Cross-platform - Supports Windows, macOS, and Linux
- Vue 3 - Progressive JavaScript framework
- TypeScript - Type-safe JavaScript superset
- Naive UI - Modern Vue 3 component library
- Pinia - Lightweight state management library for Vue
- Vite - Next generation frontend build tool
- Tauri - Lightweight desktop application framework based on Rust
- Rust - Systems programming language ensuring performance and safety
- Node.js >= 18.0.0
- pnpm >= 8.0.0
- Rust >= 1.70.0 (for building Tauri applications)
- Clone the repository
git clone https://github.com/yourusername/rebebuca.git
cd rebebuca- Install dependencies
pnpm install- Start development server
pnpm tauri:dev- Click the "New" button in the left sidebar
- Fill in the configuration details:
- Name: Display name for the configuration
- Command: The command to execute
- Working Directory: Directory where the command will run (optional)
- Environment Variables: Additional environment variables (optional)
 
- Click "Save" to complete
- Click the play button ▶️ next to a configuration in the left sidebar
- The command will execute in a new tab, showing real-time output
- Multiple configurations can run simultaneously
- Restart: Re-execute the current configuration
- Stop: Terminate the running command
- Clear: Clear console output
- Scroll to Bottom: Jump to the latest output
- Edit: Modify the configuration associated with the current tab
- The right panel displays recent run history
- Click the rerun button to quickly execute historical commands
- Support for clearing history
rebebuca/
├── src/                      # Vue frontend code
│   ├── App.vue              # Main application component
│   ├── main.ts              # Application entry point
│   ├── components/          # Vue components
│   │   └── RunConfigDialog.vue
│   └── stores/              # Pinia state management
│       └── runConfig.ts
├── src-tauri/               # Tauri backend code
│   ├── src/
│   │   ├── main.rs         # Rust main program
│   │   └── lib.rs          # Library code
│   ├── tauri.conf.json     # Tauri configuration
│   └── Cargo.toml          # Rust dependency configuration
├── public/                  # Static assets
├── index.html              # HTML template
├── vite.config.ts          # Vite configuration
├── tsconfig.json           # TypeScript configuration
└── package.json            # Project dependencies
# Start development server (with hot reload)
pnpm tauri:dev# Build production version
pnpm tauri buildBuild artifacts are located in the src-tauri/target/release/bundle/ directory.
The project is configured with GitHub Actions workflows that automatically build for the following platforms:
- macOS: Universal Binary (supports both Intel and Apple Silicon)
- Generates .appand.dmgfiles
 
- Generates 
- Windows: x64 executables
- Generates .exe(NSIS installer) and.msiinstaller
 
- Generates 
- Push to main branch: Automatically builds all platforms
- Create version tag: Creating a tag in v*format (e.g.,v0.1.0) will automatically build and create a GitHub Release
# Release a new version
git tag v0.1.0
git push origin main
git push origin v0.1.0- Manual trigger: Run builds manually from the GitHub Actions page
After the build completes, you can download artifacts from the Actions page or from the Releases page for published versions.
For detailed information, see .github/workflows/README.md.
- macOS: Generates .appand.dmgfiles
- Windows: Generates .exeand.msiinstaller
- Linux: Generates .AppImageand.debpackages (requires local build)
Contributions are welcome! Please follow these steps:
- Fork this repository
- Create a feature branch (git checkout -b feature/AmazingFeature)
- Commit your changes (git commit -m 'Add some AmazingFeature')
- Push to the branch (git push origin feature/AmazingFeature)
- Open a Pull Request
- Use TypeScript strict mode
- Follow Vue 3 Composition API best practices
- Use <script setup>syntax sugar
- Keep code clean and maintainable
If you find a bug or have a feature suggestion, please create an issue.
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
- Tauri - Excellent desktop application framework
- Vue.js - Progressive JavaScript framework
- Naive UI - Beautiful Vue 3 component library
- Vite - Fast frontend build tool
Made with ❤️
If this project helps you, please give it a ⭐️
