mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
housekeep: Amend .gitignore and .dockerignore
Prevent some files/dirs to end up in the repo / docker image: * directories typically used for python virtualenvs * files that are being generated by running tests Signed-off-by: moson-mo <mo-son@mailbox.org>
This commit is contained in:
parent
32461f28ea
commit
c6c81f0789
2 changed files with 24 additions and 3 deletions
|
@ -1,6 +1,23 @@
|
||||||
*/*.mo
|
# Config files
|
||||||
conf/config
|
conf/config
|
||||||
conf/config.sqlite
|
conf/config.sqlite
|
||||||
conf/config.sqlite.defaults
|
conf/config.sqlite.defaults
|
||||||
conf/docker
|
conf/docker
|
||||||
conf/docker.defaults
|
conf/docker.defaults
|
||||||
|
|
||||||
|
# Compiled translation files
|
||||||
|
**/*.mo
|
||||||
|
|
||||||
|
# Typical virtualenv directories
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
.venv/
|
||||||
|
|
||||||
|
# Test output
|
||||||
|
htmlcov/
|
||||||
|
test-emails/
|
||||||
|
test/__pycache__
|
||||||
|
test/test-results
|
||||||
|
test/trash_directory*
|
||||||
|
.coverage
|
||||||
|
.pytest_cache
|
||||||
|
|
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -24,7 +24,6 @@ conf/docker
|
||||||
conf/docker.defaults
|
conf/docker.defaults
|
||||||
data.sql
|
data.sql
|
||||||
dummy-data.sql*
|
dummy-data.sql*
|
||||||
env/
|
|
||||||
fastapi_aw/
|
fastapi_aw/
|
||||||
htmlcov/
|
htmlcov/
|
||||||
po/*.mo
|
po/*.mo
|
||||||
|
@ -32,7 +31,7 @@ po/*.po~
|
||||||
po/POTFILES
|
po/POTFILES
|
||||||
schema/aur-schema-sqlite.sql
|
schema/aur-schema-sqlite.sql
|
||||||
test/test-results/
|
test/test-results/
|
||||||
test/trash directory*
|
test/trash_directory*
|
||||||
web/locale/*/
|
web/locale/*/
|
||||||
web/html/*.gz
|
web/html/*.gz
|
||||||
|
|
||||||
|
@ -53,3 +52,8 @@ report.xml
|
||||||
|
|
||||||
# Ignore test emails
|
# Ignore test emails
|
||||||
test-emails/
|
test-emails/
|
||||||
|
|
||||||
|
# Ignore typical virtualenv directories
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
.venv/
|
||||||
|
|
Loading…
Add table
Reference in a new issue