-
Is there a template .gitignore file for a quarto project. I am interested in what files in the If there is such a file, could it be added to the files installed by |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Currently we don't create the Note that this logic currently resolves to the following
Additionally, if we detect a Python virtual environment in
Again, all of this occurs during |
Beta Was this translation helpful? Give feedback.
Currently we don't create the
.gitignore
file uponcreate-project
but rather we do it duringquarto render
if we see that the project is within a git repo (the idea being not to auto-create files not strictly required).Note that this logic currently resolves to the following
.gitignore
for all projects:Additionally, if we detect a Python virtual environment in
env/
we add that as well:Again, all of this occurs during
quarto render
rather thanquarto create-project
.