We should try and track mainline Python as much as possible. PyYAML was a sub-dependency of a dev dependency but was being included in the translations utility. Bundling only the production Python dependencies was not working because of this.
61 lines
741 B
Plaintext
61 lines
741 B
Plaintext
# Node modules get installed here
|
|
node_modules/
|
|
|
|
# sass and webassets output artifacts
|
|
scss/assets
|
|
scss/variables.scss
|
|
scss/variables.scss.map
|
|
.sass-cache/
|
|
.webassets-cache
|
|
|
|
# Python virtual env
|
|
.venv/
|
|
|
|
.pytest_cache/
|
|
__pycache__
|
|
|
|
# Compiled python bytecode files
|
|
*.pyc
|
|
.cache/
|
|
|
|
# static/fonts for now, since it is just symlink
|
|
static/fonts
|
|
# font files originate from a node module
|
|
static/fonts/*
|
|
|
|
static/assets
|
|
static/assets/*
|
|
|
|
# buildinfo files
|
|
static/buildinfo.*
|
|
|
|
# local log files
|
|
log/*
|
|
|
|
config/dev.ini
|
|
|
|
# CRLs
|
|
/crl
|
|
/crls
|
|
/crl-tmp
|
|
*.bk
|
|
|
|
# test CA config
|
|
ssl/client-certs/*.srl
|
|
|
|
# uploads
|
|
/uploads
|
|
|
|
# python coverage output
|
|
.coverage
|
|
|
|
# je coverage output
|
|
coverage
|
|
|
|
|
|
# selenium testing
|
|
browserstacklocal
|
|
|
|
# python config
|
|
.python-version
|