···4545/// > be a valid connection string with the following format:
4646/// >
4747/// > ```txt
4848-/// > postgres://user:password@host:port/database
4848+/// > postgres://user:password@host:port/database?connect_timeout=seconds
4949/// > ```
5050/// >
5151/// > If a `DATABASE_URL` variable is not set, Squirrel will instead read your
···5656/// > - `PGUSER`: `"postgres"`
5757/// > - `PGDATABASE`: the name of your Gleam project
5858/// > - `PGPASSWORD`: `""`
5959+/// > - `PGCONNECT_TIMEOUT`: `5` seconds
5960///
6061/// > ⚠️ The generated code relies on the
6161-/// > [`pog`](https://hexdocs.pm/pog/) package to work, so make sure to
6262-/// > add that dependency to your project.
6262+/// > [`pog`](https://hexdocs.pm/pog/) package to work, so make sure to add
6363+/// > that dependency to your project.
6364///
6465pub fn main() {
6566 case parse_cli_args(), connection_options() {