-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
54 lines (37 loc) · 976 Bytes
/
.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
# Generated BUILD file
BUILD
# VS Code files
**/.vscode/
*.code-workspace
#eclipse project files
.project
.pydevproject
# Configuration
src/instance/app.cfg
src/instance/search-config.yaml
# log files in any path
**/*.log
# Rotated log files
**/*.log*
.idea
*.DS_Store
**/__pycache__/
# Ignore docker env file
docker/.env
# Docker copied files and directories
docker/search-api/src
docker/search-api/VERSION
docker/search-api/BUILD
# Portal cache
src/hubmap_translation/addl_index_transformations/portal/cache/*.jsonld
# python virtual environments
**/.venv
## Full Reindex script components
# Everything in the $EXEC_INFO_DIR configured in fresh_indices.ini
scripts/fresh_indices/exec_info/*
# Actual configuration file derived from fresh_indices.ini.example
scripts/fresh_indices/fresh_indices.ini
# The file holding the user's token, stream into the fresh_indices.sh script
scripts/fresh_indices/token_holder
examples/*.out
examples/.ipynb_checkpoints/**/*