mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
47 lines
578 B
Plaintext
47 lines
578 B
Plaintext
# Shared build context ignore (used by deployment images with context: ..)
|
|
|
|
# VCS / editor
|
|
.git
|
|
.github
|
|
.idea
|
|
.vscode
|
|
.cursor
|
|
.DS_Store
|
|
|
|
# Secrets / local env
|
|
.env
|
|
deployment/.env
|
|
|
|
# Node
|
|
node_modules
|
|
npm-debug.log
|
|
.vite
|
|
dist
|
|
build
|
|
out
|
|
coverage
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ipynb_checkpoints
|
|
.venv
|
|
venv/
|
|
|
|
# App runtime data/logs (mounted, not baked)
|
|
backend/data
|
|
backend/files
|
|
data
|
|
logs
|
|
**/logs
|
|
**/logs/**
|
|
*.log
|
|
|
|
# Deploy cache (hashes)
|
|
.deploy-cache
|
|
|
|
# Firebase cert: bind-mounted at runtime; do not send to docker build context
|
|
firebase-cert.json
|