ArchiveBox/.gitignore

41 lines
433 B
Text
Raw Normal View History

2018-06-10 21:21:53 -04:00
.DS_Store
2018-08-06 23:43:07 -07:00
._*
2020-06-25 21:30:29 -04:00
*.pyc
2017-05-05 04:50:15 -04:00
__pycache__/
2019-03-26 05:35:20 -04:00
.mypy_cache/
2021-01-08 08:24:05 -05:00
.eggs/
2020-12-11 16:49:00 +02:00
tests/out/
2018-08-06 23:43:07 -07:00
# Python and Node dependencies
2020-06-25 21:30:29 -04:00
venv/
.venv/
.docker-venv/
node_modules/
2024-09-04 00:04:10 -07:00
typings/
# Ignore dev lockfiles (should always be built fresh)
pdm.dev.lock
2024-04-25 18:03:44 -07:00
requirements-dev.txt
# Packaging artifacts
2023-10-19 17:09:48 -07:00
.pdm-python
2023-10-20 02:45:20 -07:00
.pdm-build
2020-12-11 16:22:38 +02:00
archivebox.egg-info
archivebox-*.tar.gz
build/
dist/
2018-08-06 23:43:07 -07:00
# Data folders
2024-09-17 00:47:55 -07:00
lib/
2024-09-09 23:58:07 -07:00
tmp/
2020-06-25 21:30:29 -04:00
data/
2024-02-22 04:46:44 -08:00
data*/
2020-06-25 21:30:29 -04:00
output/
index.sqlite3
2024-06-04 04:14:59 -07:00
*.sqlite*
data.*
2022-09-12 20:34:02 +00:00
# vim
*.sw?
2024-06-04 04:14:59 -07:00
.vscode