video
This commit is contained in:
84
.gitignore
vendored
84
.gitignore
vendored
@@ -1,35 +1,89 @@
|
||||
# Build artifacts
|
||||
bin/
|
||||
node_modules/
|
||||
# ============================================================================
|
||||
# Build artifacts — generated by `make video`, `make serve`, `nix build`
|
||||
# ============================================================================
|
||||
build/
|
||||
dist/
|
||||
*.min.css
|
||||
*.min.js
|
||||
out/
|
||||
bin/
|
||||
|
||||
# Editor
|
||||
# Nix build outputs (symlinks to /nix/store)
|
||||
result
|
||||
result-*
|
||||
result-*.drv
|
||||
.direnv/
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
.venv/
|
||||
venv/
|
||||
|
||||
# Node (if/when we add a Tailwind CLI build step)
|
||||
node_modules/
|
||||
.npm/
|
||||
.yarn/
|
||||
|
||||
# ============================================================================
|
||||
# Generated runtime assets — the .mp4 in video/ IS tracked, the build/ output
|
||||
# is not. The static/js/mountain.js bundle is *committed* (regeneratable, but
|
||||
# useful to have a built version in the repo so the site works without
|
||||
# ffmpeg + chafa installed).
|
||||
# ============================================================================
|
||||
|
||||
# ============================================================================
|
||||
# Editor / IDE
|
||||
# ============================================================================
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
.DS_Store
|
||||
*.swo
|
||||
*.swn
|
||||
*~
|
||||
|
||||
# Helix
|
||||
.helix/
|
||||
|
||||
# ============================================================================
|
||||
# OS
|
||||
# ============================================================================
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
|
||||
# ============================================================================
|
||||
# Logs
|
||||
# ============================================================================
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pip-log.txt
|
||||
pip-log/
|
||||
|
||||
# Env
|
||||
# ============================================================================
|
||||
# Env / secrets (in case a future step needs API keys)
|
||||
# ============================================================================
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Cache
|
||||
# ============================================================================
|
||||
# Caches
|
||||
# ============================================================================
|
||||
.cache/
|
||||
.parcel-cache/
|
||||
.eslintcache
|
||||
.pytest_cache/
|
||||
.ruff_cache/
|
||||
.mypy_cache/
|
||||
|
||||
# Generated
|
||||
static/css/site.compiled.css
|
||||
# ============================================================================
|
||||
# Tailwind (if/when we swap the Play CDN for a standalone build)
|
||||
# ============================================================================
|
||||
static/css/dist/
|
||||
static/css/*.compiled.css
|
||||
static/css/tailwind.config.js
|
||||
|
||||
# Nix
|
||||
result
|
||||
result-*
|
||||
.direnv/
|
||||
video/
|
||||
|
||||
Reference in New Issue
Block a user