Skip to content

Commit 3fd95a6

Browse files
committed
Add support for all python dev repository-ignored files.
1 parent f65748c commit 3fd95a6

File tree

2 files changed

+117
-4
lines changed

2 files changed

+117
-4
lines changed

.gitignore

Lines changed: 117 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,123 @@
1-
venv/
1+
#custom
2+
venv/*
3+
db.sqlite3
4+
5+
venv/*
26
db.sqlite3
37
__pycache__/
48
*/__pycache__/
59
*/*/__pycache__/
610
*/__pycache__/*
711
*/*/__pycache__/*
12+
13+
# Byte-compiled / optimized / DLL files
14+
*/__pycache__/
15+
*/*/__pycache__/
16+
*.py[cod]
17+
*$py.class
18+
19+
# C extensions
20+
*.so
21+
22+
# Distribution / packaging
23+
.Python
24+
env/
25+
build/
26+
develop-eggs/
27+
dist/
28+
downloads/
29+
eggs/
30+
.eggs/
31+
lib/
32+
lib64/
33+
parts/
34+
sdist/
35+
var/
36+
wheels/
37+
*.egg-info/
38+
.installed.cfg
39+
*.egg
40+
41+
# PyInstaller
42+
# Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest
43+
*.spec
44+
45+
# Installer logs
46+
pip-log.txt
47+
pip-delete-this-directory.txt
48+
49+
# Unit test / coverage reports
50+
htmlcov/
51+
.tox/
52+
.coverage
53+
.coverage.*
54+
.cache
55+
nosetests.xml
56+
coverage.xml
57+
*.cover
58+
.hypothesis/
59+
60+
# Translations
61+
*.mo
62+
*.pot
63+
64+
# Django stuff:
65+
*.log
66+
local_settings.py
67+
68+
# Flask stuff:
69+
instance/
70+
.webassets-cache
71+
72+
# Scrapy stuff:
73+
.scrapy
74+
75+
# Sphinx documentation
76+
docs/_build/
77+
78+
# PyBuilder
79+
target/
80+
81+
# Jupyter Notebook
82+
.ipynb_checkpoints
83+
84+
# pyenv
85+
.python-version
86+
87+
# celery beat schedule file
88+
celerybeat-schedule
89+
90+
# SageMath parsed files
91+
*.sage.py
92+
93+
# dotenv
94+
.env
95+
96+
# virtualenv
97+
.venv
98+
venv/
99+
ENV/
100+
101+
.DS_Store
102+
# Spyder project settings
103+
.spyderproject
104+
.spyproject
105+
106+
# Rope project settings
107+
.ropeproject
108+
109+
# mkdocs documentation
110+
/site
111+
112+
# mypy
113+
.mypy_cache/
114+
115+
*.sqlite3
116+
117+
# Ryffable Project Related
118+
119+
120+
# Elastic Beanstalk Files
121+
.elasticbeanstalk/*
122+
!.elasticbeanstalk/*.cfg.yml
123+
!.elasticbeanstalk/*.global.yml

blog/views.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)