Docs

Regions.

Every Fieldwick project runs in us-east-1. The region is fixed for the lifetime of the project.

Available regions

Fieldwick runs one region today. All services - deployments, builds, databases, and edge routing - live in us-east-1. No data leaves that region unless you explicitly send it somewhere else.

Region codeLocation
us-east-1United States - Eastern

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

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.

$ fieldwick projects create my-project --region us-east-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": "us-east-1"
}