-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.toml
More file actions
38 lines (32 loc) · 803 Bytes
/
Makefile.toml
File metadata and controls
38 lines (32 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tasks.cleanmodels]
command = "rm"
args = ["-f", ".models.json"]
workspace = false
[tasks.genmodels]
command = "cargo"
args = ["run", "-r", "-p", "rustymon-server", "-F rorm-main"]
dependencies = ["cleanmodels"]
workspace = false
[tasks.make-migrations]
command = "rorm-cli"
args = ["make-migrations"]
dependencies = ["genmodels"]
workspace = false
[tasks.migrate]
command = "rorm-cli"
args = ["migrate"]
workspace = false
[tasks.build]
command = "cargo"
args = ["build", "-r", "-p", "rustymon-server"]
workspace = false
[tasks.populate-db]
command = "cargo"
args = [
"run", "-r", "-p", "rustymon-server", "--", "parse-osm",
"--config-path", "config.toml",
"--file", "osm_data/bayern-latest.osm.pbf",
"--center-x", "11.5118905",
"--center-y", "48.5219287",
]
workspace = false