Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
208a0b4
feat: Implement Database Registry and Dynamic Form Handling
AbianS Oct 8, 2025
0dc03ae
feat: Add generic container creation API and related Docker run funct…
AbianS Oct 8, 2025
888bbf3
feat: Add MySQL and Redis database providers with configuration options
AbianS Oct 8, 2025
b14f215
refactor: container management to use provider-based system
AbianS Oct 8, 2025
c1745ea
refactor: Remove ContainerService, introduce unified databases API, a…
AbianS Oct 8, 2025
6139a60
refactor: Remove unused container and Docker utility functions, strea…
AbianS Oct 8, 2025
099ac17
refactor: update and enhance unit tests for Docker DB Manager
AbianS Oct 8, 2025
77295a9
refactor: update documentation and types for provider-based database …
AbianS Oct 8, 2025
d6ced65
refactor: remove legacy commands and streamline database container ma…
AbianS Oct 8, 2025
cffee39
refactor: enhance form validation and add container name and port fie…
AbianS Oct 8, 2025
9826450
refactor: simplify EditContainerForm by consolidating container name …
AbianS Oct 8, 2025
d59b091
refactor: enhance database provider interfaces to support edit mode a…
AbianS Oct 8, 2025
7c3c0e8
test: add unit tests for database registry and providers, including m…
AbianS Oct 8, 2025
da2b1b9
refactor: reorganize database provider registration and introduce hoo…
AbianS Oct 10, 2025
d946a0c
refactor: update database provider versions for MongoDB, MySQL, Postg…
AbianS Oct 10, 2025
e5cfd04
refactor: remove use-registry hooks and directly utilize database reg…
AbianS Oct 13, 2025
41946b3
refactor: enhance container update logic to include cleanup of old vo…
AbianS Oct 14, 2025
3fff511
refactor: implement rollback logic for container updates to align wit…
AbianS Oct 14, 2025
422b95e
refactor: enhance container readiness checks in MongoDB, MySQL, Postg…
AbianS Oct 14, 2025
0bf83cf
refactor: update container password only if a non-empty value is prov…
AbianS Oct 14, 2025
2fabb87
refactor: streamline advanced MySQL settings by using command flags i…
AbianS Oct 14, 2025
91a6862
refactor: improve MySQL and Redis provider configurations with enhanc…
AbianS Oct 14, 2025
14a27d9
refactor: add validation for required port field in database containe…
AbianS Oct 14, 2025
daf8060
refactor: enhance volume management and cleanup logic in container up…
AbianS Oct 14, 2025
8d4b1a6
refactor: improve error handling in MySQL volume creation and clarify…
AbianS Oct 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
146 changes: 0 additions & 146 deletions .github/copilot-instructions.md

This file was deleted.

31 changes: 31 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"dependencies": {
"@hookform/resolvers": "5.2.2",
"@radix-ui/react-accordion": "1.2.12",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-label": "2.1.7",
Expand Down
5 changes: 0 additions & 5 deletions src-tauri/src/commands/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,3 @@
pub fn get_app_version() -> String {
env!("CARGO_PKG_VERSION").to_string()
}

#[tauri::command]
pub fn greet(name: &str) -> String {
format!("Hello, {}! You've been greeted from Rust!", name)
}
Loading