| { |
| "steps": [ |
| { |
| "id": "download", |
| "needs": [], |
| "tasks": [ |
| { |
| "type": "DownloadUrl", |
| "source": "https://download.geofabrik.de/europe/liechtenstein-latest.osm.pbf", |
| "target": "liechtenstein-latest.osm.pbf", |
| "replaceExisting": true |
| } |
| ] |
| }, |
| { |
| "id": "import", |
| "needs": [ |
| "download" |
| ], |
| "tasks": [ |
| { |
| "type": "ImportOsmPbf", |
| "file": "liechtenstein-latest.osm.pbf", |
| "database": "jdbc:postgresql://localhost:5432/baremaps?&user=baremaps&password=baremaps", |
| "databaseSrid": 3857, |
| "replaceExisting": true |
| } |
| ] |
| }, |
| { |
| "id": "index", |
| "needs": [ |
| "import" |
| ], |
| "tasks": [ |
| { |
| "type": "ExecuteSql", |
| "file": "indexes.sql", |
| "database": "jdbc:postgresql://localhost:5432/baremaps?&user=baremaps&password=baremaps" |
| } |
| ] |
| } |
| ] |
| } |