Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions claim-db-worker/worker-configuration.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/* eslint-disable */
// Generated by Wrangler by running `wrangler types` (hash: 378cd240974b360abc5c1bcd67451f59)
// Generated by Wrangler by running `wrangler types` (hash: accf5b7c35ec548a04578ebae26216a5)
// Runtime types generated with [email protected] 2025-06-28
declare namespace Cloudflare {
interface Env {
INTEGRATION_TOKEN: string;
CLIENT_SECRET: string;
CREATE_DB_DATASET: AnalyticsEngineDataset;
CLAIM_DB_RATE_LIMITER: RateLimit;
ASSETS: Fetcher;
Expand Down
2 changes: 1 addition & 1 deletion claim-db-worker/wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "node_modules/wrangler/config-schema.json",
"name": "claim-db-worker",
"main": "src/index.ts",
"account_id": "0ef7f922ce028e16c1a44d98c86511b0",
"account_id": "16b32bbb36161aca01a6357a37bc453e",
"compatibility_date": "2025-06-28",
"observability": {
"enabled": true,
Expand Down
7 changes: 2 additions & 5 deletions create-db/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ async function createDatabase(name, region) {
chalk.gray(
" Your database will be deleted on " +
expiryFormatted +
" if not claimed.\n"
" if not claimed."
)
)
);
Expand Down Expand Up @@ -391,18 +391,15 @@ async function main() {
chooseRegionPrompt = true;
}

intro(chalk.cyan.bold("🚀 Prisma Postgres Create DB"));
intro(chalk.cyan.bold("🚀 Creating a Prisma Postgres database"));
log.message(
chalk.white(`Provisioning a temporary database in ${region}...`)
);
log.message("");
log.message(
chalk.gray(
`It will be automatically deleted in 24 hours, but you can claim it.`
)
);
log.message("");

// Interactive mode prompts
if (chooseRegionPrompt) {
// Prompt for region
Expand Down
2 changes: 1 addition & 1 deletion create-db/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-db",
"version": "0.0.6",
"version": "0.0.7",
"description": "Instantly create a temporary Prisma Postgres database with one command, then claim and persist it in your Prisma Data Platform project when ready.",
"main": "index.js",
"author": "",
Expand Down
2 changes: 1 addition & 1 deletion create-pg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-pg",
"version": "0.0.6",
"version": "0.0.7",
"description": "Instantly create a temporary Prisma Postgres database with one command, then claim and persist it in your Prisma Data Platform project when ready.",
"main": "index.js",
"author": "",
Expand Down
2 changes: 1 addition & 1 deletion create-postgres/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-postgres",
"version": "0.0.6",
"version": "0.0.7",
"description": "Instantly create a temporary Prisma Postgres database with one command, then claim and persist it in your Prisma Data Platform project when ready.",
"main": "index.js",
"author": "",
Expand Down