Docs

Regions.

Every Fieldwick project runs in one region. Pick the one closest to your users at create time - it is fixed for the lifetime of the project.

Available regions

Fieldwick runs two regions today. All services - deployments, builds, databases, and edge routing - live within the region you choose. No data leaves that region unless you explicitly wire a cross-region connection yourself.

Region codeLocation
us-east-1United States - Eastern
eu-central-1Europe - Central

List regions

Run fieldwick regions list to see every region Fieldwick currently operates. The output shows the region code and its status. Bookmark this command - the list grows as new regions come online.

$ fieldwick regions list
REGION          STATUS
us-east-1       active
eu-central-1    active

Set the region at project create

Pass --region when creating a project. If you omit the flag, Fieldwick defaults to us-east-1. Every deployment you push to that project will run in the chosen region from that point on - the region cannot be changed after the project is created.

# US region (default)
$ fieldwick projects create my-project --region us-east-1

# EU region
$ fieldwick projects create my-project --region eu-central-1

Region in fieldwick.json

After fieldwick link writes your local config file, the chosen region appears under the region key. This file is read-only for region purposes - changing it locally has no effect. The authoritative value lives on the server and is set once at project creation.

// fieldwick.json
{
  "project": "my-project",
  "region": "eu-central-1"
}