A Neon project is your top-level workspace. Each project has its own root branch, default database, default role, and primary compute. To create one, click New Project in the Neon Console and pick a name, Postgres version, and region. Or use the Neon CLI with neon projects create. Project limits depend on your plan: Free and Launch get 100 projects, Scale gets 1,000.
Create the project
- Sign in to the Neon Console.
- Click New Project.
- Fill in:
- Project name (up to 64 characters)
- Postgres version (default is the latest supported)
- Cloud service provider (AWS or Azure)
- Region (pick the one closest to your application)
- Click Create Project.
You'll land on the Project Dashboard with the connection string ready in the Connect widget. See Create a project.
What gets created
Every new project comes with:
- A root branch (named
productionin the Console,mainvia API and CLI) - A primary read-write compute, defaulting to 0.25 CU (≈1 GB RAM)
- A database (
neondbby default) - A role named after the database (for example,
neondb_owner)
For more on what's included, see Default resources.
Troubleshooting "create project" failures
The most common reason a project creation fails is hitting your plan's project limit:
| Plan | Project limit |
|---|---|
| Free | 100 |
| Launch | 100 |
| Scale | 1,000 (request an increase via support) |
If you're at the limit:
- Delete unused projects from Settings > Delete in the Console. Deleted projects can be recovered within 7 days via the API or CLI.
- Or upgrade to Scale for the higher limit.
Other reasons creation can fail:
- The chosen region is temporarily unavailable. Try a different region or retry in a few minutes.
- Network issues between the Console and the Neon control plane. Check neonstatus.com.
If neither applies and the error message isn't clear, contact Neon Support with the request ID shown in the error.
One project per app or per tenant
For most workflows, create a separate project for each application or each customer. That gives each one its own isolated storage, computes, and branches, and keeps blast radius small if something goes wrong. See Multitenancy for patterns.

Full reference for creating, configuring, transferring, and deleting projects.








