Skip to content

Commit 8c6fa03

Browse files
committed
Add STATIC_ROOT and WhiteNoise settings
1 parent c9bbc1b commit 8c6fa03

File tree

3 files changed

+42
-1
lines changed

3 files changed

+42
-1
lines changed

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*.pyo
5+
*.pyd
6+
*.so
7+
*.egg-info/
8+
*.egg
9+
*.log
10+
11+
# Virtual environments
12+
.venv/
13+
env/
14+
venv/
15+
16+
# Django
17+
db.sqlite3
18+
*.sqlite3
19+
/media/
20+
staticfiles/
21+
22+
# Local settings
23+
.env
24+
25+
# IDE / Editors
26+
.vscode/
27+
.idea/
28+
*.iml
29+
30+
# OS files
31+
.DS_Store
32+
Thumbs.db
33+
34+
# Test / coverage
35+
.coverage
36+
htmlcov/
37+
pytest_cache/

.idea/python-project-52.iml

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.10

0 commit comments

Comments
 (0)