We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efbccbd commit 78c44eaCopy full SHA for 78c44ea
double-opt-contact/app.py
@@ -16,8 +16,8 @@
16
app.config['SECRET_KEY'] = secret # auto-generated secret key
17
app.config['HCAPTCHA_SECRET_KEY'] = 'your-secret-hcaptcha-key'
18
19
-# SQLAlchemy configurations
20
-SQLALCHEMY_DATABASE_URI = 'mysql+mysqlconnector://admin:user@localhost/tablename'
+# SQLAlchemy configuration
+app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql+mysqlconnector://admin:user@localhost/tablename'
21
22
# Email configurations
23
app.config['MAIL_SERVER'] = 'your.domain.com'
0 commit comments