mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-13 05:16:29 +02:00
* 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.
53 lines
482 B
Plaintext
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
|