lots of progress on input processing

This commit is contained in:
Bryce
2025-08-03 10:09:53 -07:00
parent 97545d89d2
commit b0952aee58
29 changed files with 1172 additions and 32 deletions

10
config.py Normal file
View File

@@ -0,0 +1,10 @@
import os
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY') or 'dev-secret-key'
SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URL') or 'postgresql://postgres:password@localhost:5432/email_organizer_dev'
SQLALCHEMY_TRACK_MODIFICATIONS = False
config = {
'default': Config
}