-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
48 lines (43 loc) · 1.05 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
# The gitignore file lists files (and folders) that should be ignored by git.
# Best practice is to ignore:
## Generated Files (created in the build process, e.g. .pyc files)
## Sensitive Information (passwords or API keys, e.g. .config, .env files)
## User-Specific Files (including outputs of logs used for debugging)
## Build Artifacts and Output (also results of running your code, e.g. /bin, /build folders)
## Third-Party Libraries and Dependencies (including virtual environmen foldes such as /.venv or similar, DO commit a file that lists the dependencies, such as a requirements.txt)
# TEMPLATES FOR .GITIGNORE FILES: https://github.com/github/gitignore
# Example of a gitignore file for python projects
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Environments
.env*
.venv*
env/
venv/
ENV/
env.bak/
venv.bak/
# IDEs and editors
.vscode
.idea