remove jwt
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-11-26 01:27:33 +01:00
parent 6e3ba36851
commit 34bb3fcc25
7 changed files with 82 additions and 64 deletions

View File

@@ -1,6 +1,5 @@
#!/usr/bin/env python3
import os
from uuid import uuid4
"""
Configuration
@@ -20,8 +19,6 @@ SENTRY_DSN = os.environ.get("SENTRY_DSN")
RELEASE_ID = os.environ.get("RELEASE_ID", "test")
RELEASEMODE = os.environ.get("ONSPOT_RELEASEMODE", "dev")
JWT_SECRET_KEY = os.getenv("ONSPOT_JWT_SECRET_KEY", str(uuid4()))
REDIS_URL = os.getenv("ONSPOT_REDIS_URL")
REDIS_HOST = os.getenv("ONSPOT_REDIS_HOST")
ENCODED_SECRET_KEY = os.getenv("ONSPOT_ENCODED_SECRET_KEY")