app.json Reference: fmeServerConfig

The fmeServerConfig object configures how map.apps ETL calls FME Flow.

Property Type Required Default Notes

fmeServerUrl

String

Yes

-

Base URL to FME Flow, for example https://my-fme.example.com.

workspaceName

String

Yes

-

Name of the workspace, for example upload_to_map.fmw.

repositoryName

String

Yes

-

FME repository containing the workspace.

useProxy

Boolean

No

true

Use map.apps proxy for calls.

useAnalyzeWorkspace

Boolean

No

false

Run analyze workspace before the main process.

analyzeWorkspace

String

Conditional

-

Required if useAnalyzeWorkspace=true. Workspace must be in the same repository.

timeout

Number

No

600000

Timeout in milliseconds for HTTP requests.

Example

app.json
"fmeServerConfig": {
  "fmeServerUrl": "https://<FME Flow URL>",
  "workspaceName": "upload_to_map.fmw",
  "repositoryName": "mapapps_etl",
  "useProxy": true,
  "useAnalyzeWorkspace": false,
  "timeout": 600000
}