
    hh                     *    d Z ddlZ G d d      Zd Zy)a  
config.py

Purpose:
  Provide configuration classes and an initializer for the Flask application.
  This keeps `app.py` focused on wiring the app instead of holding config
  details. Production deployments can override environment variables.

Exports:
  - BaseConfig: Default config with safe cookie defaults
  - apply_config(app): Apply configuration, including SECRET_KEY loading
    Nc                       e Zd ZdZdZdZdZy)
BaseConfigTStricti  N)__name__
__module____qualname__SESSION_COOKIE_SECURESESSION_COOKIE_HTTPONLYSESSION_COOKIE_SAMESITEPERMANENT_SESSION_LIFETIME     EC:\Users\algun\Documents\ceba web\Ceba - Github\app_modules\config.pyr   r      s     "&!-r   r   c                 x    | j                   j                  t               t        j                  dd      | _        y )N
SECRET_KEYڀa4db8c5884908d99e43c30f338778a2d12fbf862418abc5a3104884d3608fcc5ef00c60ec88e92d7f12e4f2a8f80f641c8922fc10472f5b64728d92ccdb6123c)configfrom_objectr   osgetenv
secret_key)apps    r   apply_configr      s,    JJ:&YY| 	KCNr   )__doc__r   r   r   r   r   r   <module>r      s    
. .r   