Skip to content

Commit 6267b57

Browse files
committed
feat: add .gitignore; add responsive design with mobile first exercise
1 parent df4ac1f commit 6267b57

File tree

3 files changed

+418
-0
lines changed

3 files changed

+418
-0
lines changed

.gitignore

+293
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,293 @@
1+
### Django ###
2+
*.log
3+
*.pot
4+
*.pyc
5+
__pycache__/
6+
local_settings.py
7+
db.sqlite3
8+
db.sqlite3-journal
9+
media
10+
11+
# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
12+
# in your Git repository. Update and uncomment the following line accordingly.
13+
# <django-project-name>/staticfiles/
14+
15+
### Django.Python Stack ###
16+
# Byte-compiled / optimized / DLL files
17+
*.py[cod]
18+
*$py.class
19+
20+
# C extensions
21+
*.so
22+
23+
# Distribution / packaging
24+
.Python
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+
share/python-wheels/
38+
*.egg-info/
39+
.installed.cfg
40+
*.egg
41+
MANIFEST
42+
43+
# PyInstaller
44+
# Usually these files are written by a python script from a template
45+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
46+
*.manifest
47+
*.spec
48+
49+
# Installer logs
50+
pip-log.txt
51+
pip-delete-this-directory.txt
52+
53+
# Unit test / coverage reports
54+
htmlcov/
55+
.tox/
56+
.nox/
57+
.coverage
58+
.coverage.*
59+
.cache
60+
nosetests.xml
61+
coverage.xml
62+
*.cover
63+
*.py,cover
64+
.hypothesis/
65+
.pytest_cache/
66+
cover/
67+
68+
# Translations
69+
*.mo
70+
71+
# Django stuff:
72+
73+
# Flask stuff:
74+
instance/
75+
.webassets-cache
76+
77+
# Scrapy stuff:
78+
.scrapy
79+
80+
# Sphinx documentation
81+
docs/_build/
82+
83+
# PyBuilder
84+
.pybuilder/
85+
target/
86+
87+
# Jupyter Notebook
88+
.ipynb_checkpoints
89+
90+
# IPython
91+
profile_default/
92+
ipython_config.py
93+
94+
# pyenv
95+
# For a library or package, you might want to ignore these files since the code is
96+
# intended to run in multiple environments; otherwise, check them in:
97+
# .python-version
98+
99+
# pipenv
100+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
101+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
102+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
103+
# install all needed dependencies.
104+
#Pipfile.lock
105+
106+
# poetry
107+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
108+
# This is especially recommended for binary packages to ensure reproducibility, and is more
109+
# commonly ignored for libraries.
110+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
111+
#poetry.lock
112+
113+
# pdm
114+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
115+
#pdm.lock
116+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
117+
# in version control.
118+
# https://pdm.fming.dev/#use-with-ide
119+
.pdm.toml
120+
121+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
122+
__pypackages__/
123+
124+
# Celery stuff
125+
celerybeat-schedule
126+
celerybeat.pid
127+
128+
# SageMath parsed files
129+
*.sage.py
130+
131+
# Environments
132+
.env
133+
.venv
134+
env/
135+
venv/
136+
ENV/
137+
env.bak/
138+
venv.bak/
139+
140+
# Spyder project settings
141+
.spyderproject
142+
.spyproject
143+
144+
# Rope project settings
145+
.ropeproject
146+
147+
# mkdocs documentation
148+
/site
149+
150+
# mypy
151+
.mypy_cache/
152+
.dmypy.json
153+
dmypy.json
154+
155+
# Pyre type checker
156+
.pyre/
157+
158+
# pytype static type analyzer
159+
.pytype/
160+
161+
# Cython debug symbols
162+
cython_debug/
163+
164+
# PyCharm
165+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
166+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
167+
# and can be added to the global gitignore or merged into this file. For a more nuclear
168+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
169+
#.idea/
170+
171+
### macOS ###
172+
# General
173+
.DS_Store
174+
.AppleDouble
175+
.LSOverride
176+
177+
# Icon must end with two \r
178+
Icon
179+
180+
# Thumbnails
181+
._*
182+
183+
# Files that might appear in the root of a volume
184+
.DocumentRevisions-V100
185+
.fseventsd
186+
.Spotlight-V100
187+
.TemporaryItems
188+
.Trashes
189+
.VolumeIcon.icns
190+
.com.apple.timemachine.donotpresent
191+
192+
# Directories potentially created on remote AFP share
193+
.AppleDB
194+
.AppleDesktop
195+
Network Trash Folder
196+
Temporary Items
197+
.apdisk
198+
199+
### macOS Patch ###
200+
# iCloud generated files
201+
*.icloud
202+
203+
### Python ###
204+
# Byte-compiled / optimized / DLL files
205+
206+
# C extensions
207+
208+
# Distribution / packaging
209+
210+
# PyInstaller
211+
# Usually these files are written by a python script from a template
212+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
213+
214+
# Installer logs
215+
216+
# Unit test / coverage reports
217+
218+
# Translations
219+
220+
# Django stuff:
221+
222+
# Flask stuff:
223+
224+
# Scrapy stuff:
225+
226+
# Sphinx documentation
227+
228+
# PyBuilder
229+
230+
# Jupyter Notebook
231+
232+
# IPython
233+
234+
# pyenv
235+
# For a library or package, you might want to ignore these files since the code is
236+
# intended to run in multiple environments; otherwise, check them in:
237+
# .python-version
238+
239+
# pipenv
240+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
241+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
242+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
243+
# install all needed dependencies.
244+
245+
# poetry
246+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
247+
# This is especially recommended for binary packages to ensure reproducibility, and is more
248+
# commonly ignored for libraries.
249+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
250+
251+
# pdm
252+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
253+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
254+
# in version control.
255+
# https://pdm.fming.dev/#use-with-ide
256+
257+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
258+
259+
# Celery stuff
260+
261+
# SageMath parsed files
262+
263+
# Environments
264+
265+
# Spyder project settings
266+
267+
# Rope project settings
268+
269+
# mkdocs documentation
270+
271+
# mypy
272+
273+
# Pyre type checker
274+
275+
# pytype static type analyzer
276+
277+
# Cython debug symbols
278+
279+
# PyCharm
280+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
281+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
282+
# and can be added to the global gitignore or merged into this file. For a more nuclear
283+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
284+
285+
### Python Patch ###
286+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
287+
poetry.toml
288+
289+
# ruff
290+
.ruff_cache/
291+
292+
# LSP config files
293+
pyrightconfig.json

0 commit comments

Comments
 (0)