Files
multica/.gitignore
Antar Das d32c419b6d feat(storage): add local file storage fallback (#710)
* feat(storage): add local file storage fallback

- Add local storage implementation for file uploads
- Update .env.example with LOCAL_UPLOAD_DIR and LOCAL_UPLOAD_BASE_URL
- Integrate local storage into server router and handlers
- Add storage abstraction layer with util functions

* ♻️ refactor(storage): improve path handling and file serving

switch from path to filepath for better cross-platform support and replace manual file serving logic with http.ServeFile to enhance security against path traversal. update unit tests to use t.Setenv for cleaner environment variable management.
2026-04-12 14:04:22 +08:00

53 lines
482 B
Plaintext

node_modules
dist
*.log
.DS_Store
.envrc
# build outputs
.turbo
.next
out
build
bin
dist-electron
*.tsbuildinfo
# env
.env*
!.env.example
# test coverage
coverage
# Go
server/bin/
server/tmp/
server/migrate
server/daemon
server/multica
# Test artifacts
test-results/
apps/web/test-results/
# context (agent workspace)
.context
# local settings
.claude/
.tool-versions
# feature tracking
_features/
# runtime
*.pid
# platform specific
*.dmg
*.app
server/server
data/
.kilo