Explain .gitignore & .cfignore differences

This commit is contained in:
Tom Byers
2019-12-02 17:16:54 +00:00
parent ccbad51ebd
commit c1de4cc51b
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
# This file is a copy of .gitignore except for file/folders created by the build
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/
*.py[cod] *.py[cod]

8
.gitignore vendored
View File

@@ -23,7 +23,6 @@ var/
.installed.cfg .installed.cfg
*.egg *.egg
venv/ venv/
app/version.py
# PyInstaller # PyInstaller
# Usually these files are written by a python script from a template # Usually these files are written by a python script from a template
@@ -63,14 +62,12 @@ target/
.vscode .vscode
# Frontend dependencies and compiled assets # Frontend dependencies and compiled assets
app/static
app/assets/stylesheets/govuk_template/.sass-cache/ app/assets/stylesheets/govuk_template/.sass-cache/
.sass-cache/ .sass-cache/
cache/ cache/
node_modules node_modules
bower_components bower_components
npm-debug.log npm-debug.log
app/templates/vendor
environment.sh environment.sh
.envrc .envrc
@@ -78,3 +75,8 @@ environment.sh
# CloudFoundry # CloudFoundry
.cf .cf
package-lock.json package-lock.json
# Files/folders created by build so not present in .cfignore
app/version.py
app/static
app/templates/vendor