Skip to content

Commit f72f7f2

Browse files
committed
seed for all provider secrets
1 parent ffa12ea commit f72f7f2

File tree

5 files changed

+15
-41
lines changed

5 files changed

+15
-41
lines changed

.claude/settings.local.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,14 @@
5252
"Bash(gh pr diff:*)",
5353
"Bash(~/.cache/ms-playwright/chromium-1193/chrome-linux/chrome --version)",
5454
"Bash(~/.cache/ms-playwright/chromium-1193/chrome-linux/chrome:*)",
55-
"Bash(timeout:*)"
55+
"Bash(timeout:*)",
56+
"Bash(npx supabase:*)",
57+
"Bash(docker exec:*)"
5658
],
5759
"deny": []
5860
},
61+
"enableAllProjectMcpServers": true,
5962
"enabledMcpjsonServers": [
6063
"playwright"
61-
],
62-
"enableAllProjectMcpServers": true
63-
}
64+
]
65+
}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ coverage/
5454

5555
.playwright-mcp/
5656
prompt.md
57-
run-prompt.sh
57+
run-prompt.shsupabase/seed.private.sql

supabase/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
# Supabase
22
.branches
33
.temp
4+
5+
6+
seeds/*.private.sql

supabase/config.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
# directory name when running `supabase init`.
33
project_id = "helicone"
44

5+
[db.seed]
6+
enabled = true
7+
sql_paths = ['./seeds/*.sql']
8+
9+
510
[api]
611
# Port to use for the API URL.
712
port = 54321
Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -38,39 +38,3 @@ INSERT INTO public.feature_flags (org_id, feature)
3838
VALUES
3939
('83635a30-5ba6-41a8-8cc6-fb7df941b24a', 'credits')
4040
ON CONFLICT DO NOTHING;
41-
42-
-- Provider key for Admin organization
43-
INSERT INTO public.provider_keys (
44-
id,
45-
org_id,
46-
provider_name,
47-
provider_key_name,
48-
vault_key_id,
49-
soft_delete,
50-
created_at,
51-
provider_key,
52-
config,
53-
key_id,
54-
nonce,
55-
auth_type,
56-
provider_secret_key,
57-
cuid,
58-
byok_enabled
59-
) VALUES (
60-
'697e2a38-dacf-4073-b96b-de7a8fbf20f5',
61-
'a75d76e3-02e7-4d02-8a2b-c65ed27c69b2',
62-
'openai',
63-
'OpenAI API Key',
64-
NULL,
65-
FALSE,
66-
'2025-10-09 07:42:31.208352+00',
67-
'2GlXNCyLATazozWa/ohqecUV0ClspAx0kuKaxJeamsWmmQDlAp/axA==',
68-
'{}',
69-
'b70fd734-cd57-4ca5-bdc4-be5078c3b227',
70-
'\xB2358976BBF00CB06EBC923D72AB7725',
71-
'key',
72-
'CGFFvDANGLu1iSpow9q9ugIQAn/sJRSOTznKcsCMUk8=',
73-
'h8lgbai6ubdv',
74-
TRUE
75-
)
76-
ON CONFLICT (id) DO NOTHING;

0 commit comments

Comments
 (0)