-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.replit
More file actions
61 lines (46 loc) · 1.17 KB
/
.replit
File metadata and controls
61 lines (46 loc) · 1.17 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
run = "python"
modules = ["python-3.11"]
[deployment]
run = ["sh", "-c", "python"]
[nix]
channel = "stable-24_05"
[workflows]
runButton = "Project"
[[workflows.workflow]]
name = "Run Area Stats Generator"
author = 23073448
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd data-analysis && python area-stats-generator.py"
[[workflows.workflow]]
name = "Run Get Community Contacts"
mode = "sequential"
author = 23073448
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd utility-scripts && python get-community-contact-details.py"
[[workflows.workflow]]
name = "Run Heatmap Generator"
mode = "sequential"
author = 23073448
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd data-analysis/merchant-denisty-heatmap && python heatmap2.py"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "btcmap-reports"
[[workflows.workflow]]
name = "btcmap-reports"
author = "agent"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd utility-scripts && python run-reports.py"
[workflows.workflow.metadata]
outputType = "console"
[agent]
expertMode = true