generated from caltechlibrary/template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitignore
57 lines (51 loc) · 1.98 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
# =========================================================== -*- gitignore -*-
# @file .gitignore
# @brief Files and patterns for files and subdirs that git should ignore
# @date 2022-07-15
# @license Please see the file named LICENSE in the project directory
# @website https://github.com/caltechlibrary/dibs
#
# The approach we suggest is to add ONLY project-specific rules here. Put
# rules that apply to your way of doing things (and the particular tools you
# happen to use) into a global git ignore file as described in the section
# "Configuring ignored files for all repositories on your computer" here:
# https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
# (accessed on 2022-07-14). For example, Emacs checkpoint and backup files are
# things that are not specific to a given project; rather, Emacs users will
# see them created everywhere, in all projects, because they're a byproduct
# of using Emacs, not a consequence of working on a particular project. Thus,
# they belong in a user's global ignores list, not in this project .gitignore.
#
# A useful starting point for global .gitignore file contents can be found at
# https://github.com/github/gitignore/tree/main/Global (as of 2022-07-14).
# =============================================================================
# Ignore backup files created by our Makefile
# .............................................................................
*.bak
# Python-specific things to ignore
# .............................................................................
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.eggs/
.pytest_cache
.coverage
# Project-specific things to ignore.
# .............................................................................
dibs.db
docs/_build
load-staff-members.bash
settings.ini
*.swp
.tern-port
dibs.conf
data/manifests/*-manifest.json
htpasswd
.htpasswd
*.tmp
*.bak
data/processing/*-initiated
data/processing/*-processing
data/processing/*-problem
data/thumbnails/*.jpg