Google BigTable
The Google BigTable can be used as database for StoryBooker.
Install
npm i @storybooker/gcp @google-cloud/bigtable
Usage
import { Bigtable } from "@google-cloud/bigtable";
import { GcpBigtableDatabaseService } from "@storybooker/gcp/big-table";
// Initialize the Bigtable client
const client = new Bigtable();
// Create the service adapter
const database = new GcpBigtableDatabaseService(client);
// use as `database` in StoryBooker hosting options.