xtablo-source/api
2025-11-03 09:51:47 +01:00
..
src Update api to support stripe 2025-11-03 09:50:37 +01:00
.env.development Add connection string and CA certificate to .env 2025-11-03 09:51:28 +01:00
.env.production Add task to update tablo name in stream 2025-10-28 18:04:16 +01:00
.env.staging Add connection string and CA certificate to staging 2025-11-03 09:51:47 +01:00
.gitignore Add Supabase CA certificate, update TypeScript configuration, and implement calendar synchronization task 2025-08-03 21:41:29 +02:00
.mocharc.json Some progress 2025-09-29 21:38:20 +02:00
cloudbuild.yaml Merge files 2025-07-13 22:23:50 +02:00
Dockerfile move to staging 2025-07-13 22:44:00 +02:00
package-lock.json Update api to support stripe 2025-11-03 09:50:37 +01:00
package.json Update api to support stripe 2025-11-03 09:50:37 +01:00
README.md Some good progress 2025-06-23 11:34:30 +02:00
supabase_ca.crt Add Supabase CA certificate, update TypeScript configuration, and implement calendar synchronization task 2025-08-03 21:41:29 +02:00
tsconfig.json Add a lot of tests 2025-10-11 12:32:52 +02:00

npm install
npm run dev
npm run deploy

For generating/synchronizing types based on your Worker configuration run:

npm run cf-typegen

Pass the CloudflareBindings as generics when instantiation Hono:

// src/index.ts
const app = new Hono<{ Bindings: CloudflareBindings }>()