Skip to content

Commit

Permalink
feat(initial): first round of commits
Browse files Browse the repository at this point in the history
  • Loading branch information
soehlert committed Aug 25, 2023
1 parent 4a9e8e3 commit b0f57d3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// For format details, see https://containers.dev/implementors/json_reference/
{
"name": "concert_elephant_dev",
"dockerComposeFile": [
Expand Down
9 changes: 8 additions & 1 deletion config/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,14 @@

# STATIC
# ------------------------
STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage"
STORAGES = {
"default": {
"BACKEND": "django.core.files.storage.FileSystemStorage",
},
"staticfiles": {
"BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage",
},
}
# MEDIA
# ------------------------------------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

import os
import sys

import django

if os.getenv("READTHEDOCS", default=False) == "True":
Expand Down

0 comments on commit b0f57d3

Please sign in to comment.