Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 1.68 KB

QUICKSTART.md

File metadata and controls

56 lines (35 loc) · 1.68 KB

Quickstart

Go to your Cloudflare dashboard under "Access" and generate a new service token.

Copy and save the Client ID and Client Secret, you will need this later to connect to the database.

Create an access policy for your specified hostname using the service token.

Install cloudflared on the server where your database is running. If you are using a managed database, you can install it on a nearby VM.

brew install cloudflare/cloudflare/cloudflared

Start the tunnel in db-connect mode, providing a hostname and your database connection URL.

cloudflared db-connect --hostname db.myzone.com --url postgres://user:pass@localhost?sslmode=disable --insecure

If you want to deploy using Docker or Kubernetes, see our guide here. You can alternatively specify the following environment variables: TUNNEL_HOSTNAME and TUNNEL_URL.

3. Code

Import the db-connect library in your Cloudflare Workers or browser project.

npm i @cloudflare/db-connect

Now initalize the client and start coding!

import { DbConnect } from '@cloudflare/db-connect'

const db = new DbConnect({
  host: 'db.myzone.com',
  clientId: 'xxx',
  clientSecret: 'xxx'
})

async function doPing() {
  const resp = await db.ping()
}