user handling done
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-11-24 20:26:02 +01:00
parent f54d752657
commit e02bf1aa62
9 changed files with 207 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python3
import os
from uuid import uuid4
"""
Configuration
@@ -25,3 +25,5 @@ POSTGRES_HOSTNAME = os.getenv("VIDEON_POSTGRES_HOSTNAME", "localhost")
POSTGRES_USERNAME = os.getenv("VIDEON_POSTGRES_USERNAME", "videon")
POSTGRES_PASSWORD = os.getenv("VIDEON_POSTGRES_PASSWORD", "videon")
POSTGRES_DB = os.getenv("VIDEON_POSTGRES_DB", "videon")
JWT_SECRET_KEY = os.getenv("VIDEON_POSTGRES_DB", str(uuid4()))