36 lines
606 B
Plaintext
36 lines
606 B
Plaintext
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
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*
|
|
|
|
# Data (Persistent storage)
|
|
# We might want to keep the directory structure but ignore the actual content
|
|
# data/posts/*
|
|
# data/uploads/*
|
|
# !data/posts/hello-world.md
|
|
# !data/posts/another-post.md
|