-
|
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 2 replies
-
|
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
.gitignorefile uponcreate-projectbut rather we do it duringquarto renderif 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
.gitignorefor all projects:Additionally, if we detect a Python virtual environment in
env/we add that as well:Again, all of this occurs during
quarto renderrather thanquarto create-project.