Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
05ccfb2
remove filename dependencies.fix test cases fail
akzj Jun 16, 2025
a95fe8b
rename project, add crates
akzj Jun 16, 2025
1916c06
add cherryserver
akzj Jun 16, 2025
5227f94
add docker compose support
akzj Jun 16, 2025
d7ff6af
add cherry
akzj Jun 17, 2025
9d52c5b
add cherry initial sql models api
akzj Jun 17, 2025
0a5fd82
update SideBar
akzj Jun 17, 2025
5a6321e
update sideBar layout
akzj Jun 17, 2025
5d4aa10
add setting page
akzj Jun 17, 2025
aa75c86
add contact
akzj Jun 18, 2025
68e1572
update css
akzj Jun 18, 2025
85313cb
update UI css
akzj Jun 18, 2025
6502f05
update settings css
akzj Jun 18, 2025
d0ec909
update settings css
akzj Jun 18, 2025
d672682
update settings css
akzj Jun 18, 2025
4a4ab66
update app css
akzj Jun 18, 2025
b9da717
update app css
akzj Jun 18, 2025
cdca8f3
update app css
akzj Jun 18, 2025
d356742
add cherry http client
akzj Jun 19, 2025
cd77f89
refactor delete diesel ,add sqlx
akzj Jun 19, 2025
974b1c4
cherryserver add web api
akzj Jun 19, 2025
2b70361
impl streamstore
akzj Jun 20, 2025
0a3aa97
add stream client
akzj Jun 23, 2025
5b9ca65
add stream
akzj Jun 23, 2025
272f4ef
Improve README files with better formatting, links, and organization
openhands-agent Jun 23, 2025
c90eea5
Add API to fetch user conversations
openhands-agent Jun 23, 2025
dae9866
Fix: Remove unused import in cherrycore types.rs
openhands-agent Jun 23, 2025
d0e51ab
Fix: Resolve build issues in cherry Tauri app
openhands-agent Jun 23, 2025
eb1f4f2
Improve README.md
openhands-agent Jun 23, 2025
8b9465f
Implement read_stream_handler function
openhands-agent Jun 23, 2025
2a9f396
Add comprehensive unit tests to improve code coverage
openhands-agent Jun 23, 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
45 changes: 45 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Git
.git
.gitignore

# Docker (but keep essential files)
.dockerignore

# Rust target directory
target/
**/.cargo/

# IDE files
.vscode/
.idea/
*.swp
*.swo
*~

# OS files
.DS_Store
Thumbs.db

# Logs
*.log
logs/

# Documentation
*.md
!README.md

# Test files
test_data.sql

# Environment files
.env*

# Temporary files
*.tmp
*.temp

# Build artifacts
*.o
*.so
*.dll
*.exe
Loading