fix(api): make Typesense API key optional for local development

This commit is contained in:
jon r 2024-10-10 19:38:57 +02:00
parent ca6c389349
commit f819a1cf5f
1 changed files with 1 additions and 1 deletions

View File

@ -148,4 +148,4 @@ MIDDLEWARE = (
"funkwhale_api.common.middleware.PymallocMiddleware",
) + MIDDLEWARE
TYPESENSE_API_KEY = "apikey"
TYPESENSE_API_KEY = env.str("TYPESENSE_API_KEY", None)