8 lines
290 B
Python
8 lines
290 B
Python
import os
|
|
|
|
class Config:
|
|
SECRET_KEY = os.environ.get('SECRET_KEY') or 'your-secret-key-here'
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///cert_manager.db'
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
|
CERTS_ROOT = os.path.join(os.path.dirname(__file__), 'certs')
|
|
CAPTCHA_ENABLED = True |