33 lines
604 B
Plaintext
33 lines
604 B
Plaintext
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
docker-compose.override.yml
|
|
|
|
# Backend (Rust)
|
|
backend/target/
|
|
backend/**/*.rs.bk
|
|
|
|
# Frontend (Node/Astro)
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/.astro/
|
|
frontend/npm-debug.log*
|
|
frontend/yarn-debug.log*
|
|
frontend/yarn-error.log*
|
|
frontend/.pnpm-debug.log*
|
|
|
|
# Persistent runtime data — your blog's content lives here on the deployed
|
|
# host, not in the repo. The two seed posts under data/posts/ ship with the
|
|
# initial commit; new files created by the editor stay local.
|
|
data/uploads/
|
|
data/config.json
|