feat: initial commit for campfire logs blog posts and assets

This commit is contained in:
2025-09-12 22:00:22 -05:00
parent 8431627774
commit 29fc76648c
12 changed files with 418 additions and 0 deletions

35
.gitignore vendored Normal file
View File

@@ -0,0 +1,35 @@
# This .gitignore is for an Eleventy/Nunjucks project.
# Node.js dependencies
# The node_modules folder is where npm installs all project dependencies.
# It should never be committed to a public repository.
node_modules/
# Eleventy build output
# This is the directory where Eleventy generates the final static HTML files.
# It should be ignored to prevent committing build artifacts.
_site/
# Logs and debug files
npm-debug.log*
yarn-debug.log*
.npm
# Environment variables
# This is a critical security measure to prevent sensitive data from being
# committed to a public repository.
.env
.env.*
# Visual Studio Code settings
# These are local to your development environment and should not be shared.
.vscode/
# Operating system generated files
.DS_Store
Thumbs.db
# Other temporary or build-related files
*~
*.swp
*.bak