Skip to content

Feature/remove session context #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
34 changes: 34 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Ignore the target directory where Rust build artifacts are placed
/target

# Ignore the local Cargo registry and git db (cached crates)
/cargo/.git
/cargo/registry

# Ignore build scripts or binaries
*.exe
*.dll
*.so
*.dylib

# Ignore backup and swap files
*.swp
*.swo
*.bak

# Ignore any IDE-specific or editor-specific files (e.g., VSCode, IntelliJ, etc.)
**/.vscode
**/.idea
**/.gdb_history
**/.git
**/.DS_Store

# Ignore test result files
/tests/results/

# Ignore unnecessary temporary or system files
**/node_modules
*.log
*.tmp
*.lock
!Cargo.lock
Loading
Loading