-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.dockerignore
More file actions
61 lines (51 loc) · 640 Bytes
/
Copy path.dockerignore
File metadata and controls
61 lines (51 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Git
.git
.gitignore
.github
# Development files
metadata_scraper/
scripts/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
venv/
env/
.venv/
# IDE
.vscode/
.idea/
*.swp
*.swo
# User data (created at runtime)
config.json
secrets.json
library.db
library_manager.db
*.db
*.db-wal
*.db-shm
# Logs
*.log
logs/
# Documentation (not needed in runtime)
docs/
*.md
!requirements.txt
# Docker files (not needed inside container)
Dockerfile
docker-compose.yml
.dockerignore
# UnRaid template
unraid/
# Examples (users create their own)
config.example.json
secrets.example.json
# OS files
.DS_Store
Thumbs.db
# Test files
tests/
test_*.py
*_test.py