
- Flatten directory structure by moving files from astro-church-website/ to root - Remove church-core subdirectory in favor of inline Rust library - Update .gitignore to properly exclude build artifacts, generated files, and dependencies - Add environment variables, IDE files, and coverage reports to gitignore - Include generated CSS files and native bindings in ignore patterns
69 lines
761 B
Plaintext
69 lines
761 B
Plaintext
# Rust build artifacts
|
|
target/
|
|
Cargo.lock
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json
|
|
|
|
# Astro build output
|
|
dist/
|
|
.astro/
|
|
|
|
# Generated CSS from Tailwind builds
|
|
public/css/theme-light.css
|
|
public/css/theme-dark.css
|
|
|
|
# Compiled binaries and libraries
|
|
*.node
|
|
*.so
|
|
*.dll
|
|
*.dylib
|
|
*.a
|
|
|
|
# Archive files
|
|
*.tar.gz
|
|
*.zip
|
|
|
|
# iOS/Android build artifacts
|
|
bindings/
|
|
*.xcframework/
|
|
RTSDA/
|
|
|
|
# Build outputs
|
|
build/
|
|
*.log
|
|
index.cjs
|
|
index.d.ts
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Cargo build metadata
|
|
.cargo/
|
|
|
|
# Coverage reports
|
|
coverage/
|
|
*.lcov |