# Step 2: Create your Doppler project

## Establish a single source of truth for your application secrets.

To proceed, sign in to your Doppler account, go to the Projects page, and click the plus button (as shown below) to create a new project. Name the project “cloudflare-workers-demo.”

Doppler automatically creates three environment configurations for every new project. These are dev, stg (staging), and prd (production). These values are displayed immediately after the project is created, as shown below.

You can also view them directly in your terminal with:

```plaintext
# Language - bash
doppler configs --project cloudflare-workers-demo
```

Output:

```plaintext
┌──────────────┬─────────────┬─────────────────────────┐
│ NAME         │ ENVIRONMENT │ PROJECT                 │
├──────────────┼─────────────┼─────────────────────────┤
│ dev          │ dev         │ cloudflare-workers-demo │
│ dev_personal │ dev         │ cloudflare-workers-demo │
│ stg          │ stg         │ cloudflare-workers-demo │
│ prd          │ prd         │ cloudflare-workers-demo │
└──────────────┴─────────────┴─────────────────────────┘
```

The dev_personal config is a personal branch of dev for individual developer customization. For this tutorial, the focus will be on the three shared environments: dev, stg, and prd.
