🐿️ Type safe SQL in Gleam
73

Configure Feed

Select the types of activity you want to include in your feed.

update docs

Giacomo Cavalieri (Jul 4, 2025, 7:13 PM +0200) df648bca fefb838f

+4 -3
+4 -3
src/squirrel.gleam
··· 45 45 /// > be a valid connection string with the following format: 46 46 /// > 47 47 /// > ```txt 48 - /// > postgres://user:password@host:port/database 48 + /// > postgres://user:password@host:port/database?connect_timeout=seconds 49 49 /// > ``` 50 50 /// > 51 51 /// > If a `DATABASE_URL` variable is not set, Squirrel will instead read your ··· 56 56 /// > - `PGUSER`: `"postgres"` 57 57 /// > - `PGDATABASE`: the name of your Gleam project 58 58 /// > - `PGPASSWORD`: `""` 59 + /// > - `PGCONNECT_TIMEOUT`: `5` seconds 59 60 /// 60 61 /// > ⚠️ The generated code relies on the 61 - /// > [`pog`](https://hexdocs.pm/pog/) package to work, so make sure to 62 - /// > add that dependency to your project. 62 + /// > [`pog`](https://hexdocs.pm/pog/) package to work, so make sure to add 63 + /// > that dependency to your project. 63 64 /// 64 65 pub fn main() { 65 66 case parse_cli_args(), connection_options() {