- secrecy: migrate Secret<String> -> SecretString across services; adjust usages - warnings: clean unused imports/structs (no behavior change) - docker-compose: remove unnecessary host port mappings; rely on app-network; keep frontend only - build: set build.context to repo root; reference per-service Dockerfiles - add: root .dockerignore to exclude target/node_modules/ref/archive/docs and logs - data-persistence-service: refine cargo-chef with path deps; slim context; copy correct targets - Dockerfiles: normalize multi-stage builds; fix WORKDIR and release binary paths - nats: resolve 4222 conflict by not binding to host - verified: all rust services build successfully with new flow
37 lines
385 B
Plaintext
37 lines
385 B
Plaintext
# VCS
|
|
.git
|
|
.gitignore
|
|
|
|
# Editor/IDE
|
|
.vscode
|
|
.idea
|
|
.DS_Store
|
|
|
|
# Node/Next.js
|
|
frontend/node_modules
|
|
frontend/.next
|
|
**/node_modules
|
|
|
|
# Rust build artifacts
|
|
target
|
|
**/target
|
|
|
|
# Python/build caches
|
|
__pycache__
|
|
*.pyc
|
|
|
|
# Large reference/resources not needed in images
|
|
ref/
|
|
archive/
|
|
docs/
|
|
|
|
# Logs/temp
|
|
*.log
|
|
tmp/
|
|
temp/
|
|
.cache
|
|
|
|
# Docker compose override (optional)
|
|
docker-compose.override.yml
|
|
|