mirror of
https://github.com/dylanbenzi/hurricane_normalization_app.git
synced 2026-07-30 05:08:57 +00:00
70 lines
608 B
Plaintext
70 lines
608 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.github
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
docs/
|
|
|
|
# CI/CD
|
|
.github/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
tmp/
|
|
temp/
|
|
|
|
# R specific
|
|
.Rhistory
|
|
.RData
|
|
.Rproj.user
|
|
*.Rproj
|
|
|
|
# Test files
|
|
app/test-*.R
|
|
**/test-*.R
|
|
|
|
# Node (if any)
|
|
node_modules/
|
|
npm-debug.log
|
|
|
|
# Python (if any)
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.venv/
|
|
venv/
|
|
|
|
# Build artifacts
|
|
*.tar.gz
|
|
*.zip
|
|
dashboard-dev.tar.gz
|
|
dashboard-prod.tar.gz
|
|
|
|
# Caddy (deployment-specific)
|
|
docker/caddy/data/
|
|
docker/caddy/config/
|