forked from pgvector/pgvector-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.toml
More file actions
58 lines (44 loc) · 1.4 KB
/
wrangler.toml
File metadata and controls
58 lines (44 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Cloudflare Workers/Pages configuration for pgvector-python
# This configuration can be used to deploy examples or documentation to Cloudflare
name = "pgvector-python"
compatibility_date = "2026-01-15"
# Main entry point (can be customized based on your needs)
# main = "src/index.js"
# For Pages deployments, uncomment and set the build output directory
# pages_build_output_dir = "./dist"
# Workers dev mode (default: true for local development)
workers_dev = true
# Account ID (set this to your Cloudflare account ID when deploying)
# account_id = ""
# Route configuration (uncomment and customize for production deployments)
# [[routes]]
# pattern = "example.com/*"
# zone_name = "example.com"
# Environment variables
# [vars]
# API_KEY = "your-api-key"
# KV Namespaces (for Workers KV storage)
# [[kv_namespaces]]
# binding = "KV"
# id = "your-kv-namespace-id"
# D1 Databases (for serverless SQL databases)
# [[d1_databases]]
# binding = "DB"
# database_name = "pgvector-db"
# database_id = "your-database-id"
# R2 Buckets (for object storage)
# [[r2_buckets]]
# binding = "MY_BUCKET"
# bucket_name = "my-bucket"
# Compatibility flags
# [compatibility_flags]
# Build configuration
# [build]
# command = "npm run build"
# Environment-specific configurations
# [env.staging]
# name = "pgvector-python-staging"
# workers_dev = false
# [env.production]
# name = "pgvector-python-production"
# workers_dev = false