-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
24 lines (19 loc) · 733 Bytes
/
.gitignore
File metadata and controls
24 lines (19 loc) · 733 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
# This file tells git what files to ignore (e.g., you won't see them as
# untracked with "git status"). Add anything to it that can be cleared
# without any worry (e.g., by "git clean -Xdf"), because it can be
# regenerated. Lines beginning with # are comments. You can also ignore
# files on a per-repository basis by modifying the core.excludesfile
# configuration option (see "git help config"). If you need to make git
# track a file that is ignored for some reason, you have to use
# "git add -f". See "git help gitignore" for more information.
# Virtualenv
/.venv/
# Regular Python bytecode file
*.pyc
__pycache__/
# Optimized Python bytecode file
*.pyo
# auth folder
/src/auth/
# profiles folder
/src/profiles/*.txt