36 lines
514 B
Plaintext
36 lines
514 B
Plaintext
# --- Build artifacts ---
|
|
target/
|
|
**/target/
|
|
frontend/dist/
|
|
|
|
# --- Dependencies (rebuilt inside the image) ---
|
|
node_modules/
|
|
**/node_modules/
|
|
|
|
# --- VCS / CI / editor ---
|
|
.git/
|
|
.github/
|
|
.vscode/
|
|
.idea/
|
|
|
|
# --- Secrets & local state (NEVER ship to the image) ---
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
keys/
|
|
|
|
# --- Docker / compose (not needed in the build context) ---
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# --- Dev/local noise ---
|
|
*.md
|
|
!frontend/README.md
|
|
*.txt
|
|
hosts_cache.txt
|
|
repomix-output.xml
|
|
*.log
|
|
tests/
|
|
.sqlx/
|