托管
在 Neon Postgres 上运行
On this page
Neon 是一个完全托管的无服务器 Postgres 服务。
npx neonctl projects create
。连接字符串将打印到控制台。postgres://user:passwd@endpoint-pooler.region.aws.neon.build/neondb
。
npx neonctl connection-string --project-id <project-id> --pooled
。?pgbouncer=true&connect_timeout=10
添加到您刚刚复制的连接字符串中。DATABASE_URL
添加到您的 .env
文件中:
DATABASE_URL=postgres://user:passwd@endpoint-pooler.region.aws.neon.build/neondb?pgbouncer=true&connect_timeout=10
yarn run build-db && yarn run update-db
)。