Private
Public Access
launch.json is just the Browser preview tool's dev-server launch config (command, port); nothing sensitive in it, but it never should have been committed in the first place. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
29 lines
332 B
Plaintext
29 lines
332 B
Plaintext
## Python
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
*.egg-info/
|
|
|
|
## Env / secrets
|
|
.env
|
|
!.env.example
|
|
|
|
## Node / frontend
|
|
node_modules/
|
|
dist/
|
|
dist-ssr/
|
|
*.local
|
|
|
|
## Editors / OS
|
|
.vscode/
|
|
.idea/
|
|
.claude/
|
|
.DS_Store
|
|
|
|
## Test / coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
|
|
## Uploaded content (local-disk image storage, see backend/app/routers/rooms.py)
|
|
/uploads/
|