blob: 3b0f6ef6f7341d33e7a931b2943a04467406587a [file] [log] [blame]
{
"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"
}
]
}
]
}