forked from msimmond/ca-soil-health-reports
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
134 lines (119 loc) · 2.47 KB
/
.gitignore
File metadata and controls
134 lines (119 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# ===============================
# System files
# ===============================
.DS_Store
Thumbs.db
# ===============================
# R specific
# ===============================
.Rhistory
.RData
.Ruserdata
.Rapp.history
.Rproj.user/
*.Rproj
# ===============================
# renv (R package management)
# Keep renv.lock, ignore caches
# ===============================
renv/library/
renv/staging/
# DO NOT ignore renv.lock (commit it)
# ===============================
# Generated / rendered files
# ===============================
*.html
*.utf8.md
*.knit.md
*.nb.html
*.html.docx
*.docx
figure-output/
.quarto/
_site/
outputs/
# Quarto generated output directories
*_files/
*_cache/
reports-rendered/
quarto/*.html.docx
quarto/*.docx
quarto/~*
# Allow a specific example render (if intentionally tracked)
!01_producer-report.html
# Allow example report in About tab
!www/examples/example_report.html
# ===============================
# Images & large binaries (global)
# ===============================
*.png
*.jpg
*.jpeg
*.pdf
# Keep app/web assets even though images are globally ignored
!www/images/
!www/images/**
!www/images/**/*.png
!www/**/*.png
!images/
!images/**
!images/**/*.png
# Keep Quarto sources & styles
!quarto/
!quarto/**/*.qmd
!quarto/**/*.md
!quarto/styles.css
!quarto/images/
!quarto/images/**
!quarto/images/**/*.png
# ===============================
# Temporary files & logs
# ===============================
*.tmp
*.temp
*.log
qmd_read_log.txt
~$*.xlsx
# ===============================
# IDE / Editor settings
# ===============================
.vscode/
.idea/
# ===============================
# Shiny runtime/deploy artifacts
# ===============================
shinyapps/
rsconnect/
# ===============================
# Python / Conda (if present)
# ===============================
__pycache__/
*.pyc
.venv/
.env
.env.local
.envrc
.python-version
# ===============================
# Ignore files directory but keep the template
# ===============================
files/*
!files/soil-health-template.xlsx
# ===============================
# Local scripts (not for CI/CD)
# ===============================
run-app.sh
restore-app-env.sh
# ===============================
# Data: ignore raw/local CSVs
# keep only example/templates
# ===============================
data/*.csv
!data/data-template.csv
!data/data-dictionary-template.csv
!data/instructions-template.csv
# ===============================
# Local env / credentials
# ===============================
.Renviron
.httr-oauth