It seems to me that the environment variable would be less cryptic this way: ``` site_url = env(SITE_URL) site_url = env(SITE_URL or "localhost") db_port = env(DB_PORT as integer or 5432) ``` What do you think?