-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
.gitignore
86 lines (71 loc) · 1.3 KB
/
.gitignore
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# useful template here https://github.com/github/gitignore/blob/main/Python.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
### IDE's
## IntelliJ and related IDE's (RubyMine, PhpStorm, AppCode, PyCharm)
*.iml
# Directory-based project format:
.idea/
## Eclipse
*.pydevproject
.metadata
.gradle
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
# Eclipse Core
.project
# External tool builders
.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
*.launch
### Some rules to keep out installation-specific stuff that's generated when Hydrus is run from source
logs/
crash.log
# user's db files
# I nonetheless recommend you use the -d switch to put your db somewhere else if you run and update from git source
/db/*.db
/db/*.db-shm
/db/*.db-wal
/db/*.crt
/db/*.key
/db/*.log
/db/*.conf
/db/client_running
/db/server_running
/db/client_files/
/db/server_files/
/db/missing_and_invalid_files/
# in case user adds their own
/bin/ffmpeg.exe
/bin/ffmpeg
/mpv-1.dll
/mpv-2.dll
/libmpv-2.dll
/sqlite3.dll
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# User-changeable files
/client-user.bat
/client-user.sh
/client-user.command
/hydrus_client-user.bat
/hydrus_client-user.sh
/hydrus_client-user.command
# docs builds
/site/
/help/
.DS_Store