Database Connection
Connect a Neon or NileDB Postgres database to power your wb1 platform
Database Connection
Checking...Get a Free Neon Database
Neon provides free PostgreSQL databases in the cloud. No credit card needed, and the free tier is generous enough for wb1.
Click the button below to open Neon's signup page. You can sign up with GitHub, Google, or email.
Open neon.techAfter signing in, click "New Project". Give it a name like worldbridger-one.
After creating the project, Neon shows your connection string. It looks like:
postgresql://username:password@ep-cool-name-123456.us-east-2.aws.neon.tech/neondb?sslmode=require Copy the entire string including the password. You'll paste it in the next step.
Connect Your Database
Paste the connection string from your Neon dashboard below. We'll test the connection before saving.
postgresql:// or postgres:// Create Database Tables
We'll create the tables wb1 needs. All statements use IF NOT EXISTS so it's safe to run multiple times.
Database Connected!
Your Neon database is connected and all wb1 tables are ready.
Save for Deployment
To persist this connection, add the following to your .env file or Vercel environment variables:
DATABASE_URL="your-connection-string" NILE_DATABASE_URL="your-connection-string"