Doug Stevenson

Results 62 issues of Doug Stevenson

When initializing Firebase Admin to use the emulator, it's required to set the env var `FIREBASE_AUTH_EMULATOR_HOST` prior to calling `initializeApp`. This works fine, however, the way this value is used...

help wanted
type: feature request

Porting from the example provided by rusqlite in its [documentation](https://crates.io/crates/rusqlite): ```rs use rusqlite::{Connection, Result}; #[derive(Debug)] struct Person { id: i32, name: String, data: Option, } let me = Person {...