tdog
is a CLI to download your Stripe account to a SQLite database.
# macOS:
curl -L --output /usr/local/bin/tdog https://github.com/tabledog/tdog-cli/releases/latest/download/tdog-x86_64-apple-darwin
# Linux:
#curl -L --output /usr/local/bin/tdog https://github.com/tabledog/tdog-cli/releases/latest/download/tdog-x86_64-unknown-linux-gnu
chmod +x /usr/local/bin/tdog;
tdog --stripe-key abc --target db.sqlite --watch
# Or use a JSON config:
tdog --json-file /path/config.json;
tdog --json "{}";
See the config JSON schema.
git clone https://github.com/tabledog/tdog-cli;
cd tdog-cli;
cargo build --package tdog_cli
# Run
./target/debug/tdog_cli
When watch
is true
, the tdog
process will continue to run and poll the Stripe /events
endpoint, applying new writes to the database as they occur.
When watch
is false
, the tdog
process will:
// Config path `cmd.args.options`:
{
"options": {
"watch": true
}
}
config.json
{
"cmd": {
"fn": "download",
"args": {
"from": {
"stripe": {
"secret_key": "sk_test_... download at https://dashboard.stripe.com/apikeys"
}
},
"to": {
"sqlite": {
"file": "/absolute/path/db.sqlite"
}
},
"options": {
"watch": true
}
}
},
"log": "info"
}
tdog --json-file config.json
Start MySQL:
# Note: Version <= 5.6 not supported.
# Version 5.7
docker run --platform linux/x86_64 -e MYSQL_ROOT_PASSWORD=my-secret-pw -p 3306:3306 -d mysql:5.7
# Version 8
docker run --platform linux/x86_64 -e MYSQL_ROOT_PASSWORD=my-secret-pw -p 3306:3306 -d mysql:8
config.json
{
"cmd": {
"fn": "download",
"args": {
"from": {
"stripe": {
"secret_key": "sk_test_... download at https://dashboard.stripe.com/apikeys"
}
},
"to": {
"mysql": {
"addr": {
"ip": "127.0.0.1",
"port": 3306
},
"user": "root",
"pass": "my-secret-pw"
}
},
"options": {
"watch": true
}
}
},
"log": "info"
}
tdog --json-file config.json
Start Postgres:
# Version 9.6.23
docker run --platform linux/x86_64 -e POSTGRES_PASSWORD=my-secret-pw -p 5432:5432 -d postgres:9.6.23
# Version 14
docker run --platform linux/x86_64 -e POSTGRES_PASSWORD=my-secret-pw -p 5432:5432 -d postgres:14
config.json
{
"cmd": {
"fn": "download",
"args": {
"from": {
"stripe": {
"secret_key": "sk_test_.. download at https://dashboard.stripe.com/apikeys"
}
},
"to": {
"postgres": {
"addr": {
"ip": "127.0.0.1",
"port": 5432
},
"user": "postgres",
"pass": "my-secret-pw"
}
},
"options": {
"watch": true
}
}
},
"log": "info"
}
tdog --json-file config.json
config.json
{
"cmd": {
"fn": "download",
"args": {
"from": {
"stripe": {
"secret_key": "sk_test_.. download at https://dashboard.stripe.com/apikeys"
}
},
"to": {
"postgres": {
"addr": {
"ip": "127.0.0.1",
"port": 5432
},
"user": "postgres",
"pass": "my-secret-pw",
"tls": {
// Certificate Authority certificate.
// Equal to `PGPASSWORD=x psql "port=5432 host=x user=postgres sslrootcert=/certs/ca.crt sslmode=verify-full"`
"ca_cert_file": "/certs/ca.crt"
}
}
},
"options": {
"watch": true
}
}
},
"log": "info"
}