Skip to content

Commit

Permalink
Fix cache path
Browse files Browse the repository at this point in the history
  • Loading branch information
JobDoesburg committed Apr 9, 2024
1 parent b3fa759 commit e36addc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/tosti/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@


# SPOTIFY
SPOTIFY_CACHE_PATH = BASE_DIR.parent / "cache" / "spotipycache"
MARIETJE_CACHE_PATH = BASE_DIR.parent / "cache" / "marietjecache"
SPOTIFY_CACHE_PATH = "/app/cache/spotipycache"
MARIETJE_CACHE_PATH = "app/cache/marietjecache"

# SENTRY
if os.environ.get("SENTRY_DSN"):
Expand All @@ -99,7 +99,7 @@
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.filebased.FileBasedCache",
"LOCATION": BASE_DIR.parent / "cache" / "cache",
"LOCATION": "/app/cache/cache",
}
}

Expand Down

0 comments on commit e36addc

Please sign in to comment.