A web user interface for controlling intercoms.
SECRET_KEY(required): used by Flask for signing the session cookie, see Flask's documentation for more information.ARGON2_MEMORY_COST(defaults to65536): parameter used for password hashing memory cost, see argon2-cffi documentation for more information.ARGON2_TIME_COST(defaults to3): parameter used for password hashing time cost, see argon2-cffi documentation for more information.SQLALCHEMY_CONNECTION_STRING(defaults to SQLite): database connection string to use with SQLAlchemy.SMTP_SERVER(practically required): server for sending emails via SMTP.SMTP_PORT(defaults to465): port for sending emails over SMTP (using implicit TLS).SMTP_USER: user for sending email via SMTP server.SMTP_PASSWORD: password for sending email via SMTP server.SMTP_SENDER: sender email address if different fromSMTP_USER.