-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
123 lines (103 loc) · 2.45 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# This is a comment.
# Blank lines or lines starting with # are ignored.
# Inline comments are not supported.
# This file contains a list of files to exclude from the git-repository.
#
# Official documentation can be found at https://git-scm.com/docs/gitignore
# See also:
# - https://github.com/github/gitignore/blob/master/Python.gitignore
# - https://raw.githubusercontent.com/pypa/sampleproject/master/.gitignore
# - https://stackoverflow.com/questions/tagged/gitignore
#
# Slashes matter:
# - If there is a slash at the beginning or middle (or both) of the pattern,
# then the pattern is relative to the directory level of the particular .gitignore file itself.
# Otherwise the pattern may also match at any level below the .gitignore level.
#
# - If there is a / at the end of the pattern then the pattern will only match directories,
# otherwise the pattern can match both files and directories.
# - Symlinks are always files, even if they point to a dir. So never put a / at the end.
# archived files
/_archive/
# dev-symlinks to .venv to make bin/python work
/bin
/lib
/lib64
/pyvenv.cfg
# exclude actual virtual-environment
/.venv/
# distribution / packaging
/dist/
/.cookiecutter.json
# .env can contain secrets
/.env
# exclude toplevel var-dir
/var/
# excluded generated python-files
__pycache__/
################################
# Varia #
################################
.DS_Store
node_modules
/dist
.npmrc
.docker
__pycache__
# poetry.lock
################################
# Python: local .env files #
################################
.env
.env.dev # development builds in docker
.env.dev.local # development build in local IDE
.env.production # production
.env.local
.env.*.local
*.tar.gz
scouts-auth/
lib/
*.sqlite3
################################
# Log files #
################################
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*debug.log
################################
# Editor directories and files #
################################
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.VSCodeCounter
public/config.json
################################
# Docker Specific GitIgnore #
################################
/api
/frontend
################################
# Eclipse Specific GitIgnore #
################################
*.pydevproject
.project
.metadata
bin/**
tmp/**
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
# CDT-specific
.cproject