We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 005476f commit 282c058Copy full SHA for 282c058
.github/workflows/build.yml
@@ -44,7 +44,7 @@ jobs:
44
45
- name: Check imports with isort
46
run: |
47
- isort --check-only --diff .
+ isort --check-only --diff --profile black .
48
49
- name: Lint with flake8
50
@@ -91,4 +91,4 @@ jobs:
91
DB_PASSWORD: 'test_password'
92
DB_HOST: 'localhost'
93
DB_PORT: '5432'
94
- ALLOWED_HOSTS: 'localhost,127.0.0.1'
+ ALLOWED_HOSTS: 'localhost,127.0.0.1'
config/settings.py
@@ -140,6 +140,7 @@
140
# https://docs.djangoproject.com/en/4.2/howto/static-files/
141
142
STATIC_URL = "static/"
143
+STATIC_ROOT = BASE_DIR / "staticfiles"
144
145
# Default primary key field type
146
# https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field
0 commit comments