ArchiveBox/.gitignore

41 lines
433 B
Text
Raw Permalink Normal View History

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