-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.replit
136 lines (100 loc) · 2.35 KB
/
.replit
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
modules = ["python-3.11", "nodejs-20"]
[nix]
channel = "stable-24_05"
[workflows]
runButton = "Project"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Flask Server"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "GitHub Push"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Streamlit App"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Flask Server"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Local Setup"
[[workflows.workflow]]
name = "Flask Server"
author = "agent"
[workflows.workflow.metadata]
agentRequireRestartOnSave = false
[[workflows.workflow.tasks]]
task = "packager.installForAll"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python app.py"
waitForPort = 5000
[[workflows.workflow]]
name = "GitHub Push"
author = "agent"
[workflows.workflow.metadata]
agentRequireRestartOnSave = false
[[workflows.workflow.tasks]]
task = "packager.installForAll"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python push_to_github.py"
[[workflows.workflow]]
name = "Streamlit App"
author = "agent"
[workflows.workflow.metadata]
agentRequireRestartOnSave = false
[[workflows.workflow.tasks]]
task = "packager.installForAll"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "streamlit run streamlit_app.py --server.port=8502 --server.address=0.0.0.0 --server.headless=true"
waitForPort = 8502
[[workflows.workflow]]
name = "Flask Server"
author = "agent"
[workflows.workflow.metadata]
agentRequireRestartOnSave = false
[[workflows.workflow.tasks]]
task = "packager.installForAll"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python app.py"
waitForPort = 5000
[[workflows.workflow]]
name = "Local Setup"
author = "agent"
[workflows.workflow.metadata]
agentRequireRestartOnSave = false
[[workflows.workflow.tasks]]
task = "packager.installForAll"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python setup_local.py"
[deployment]
run = ["sh", "-c", "python app.py"]
[[ports]]
localPort = 80
externalPort = 3003
[[ports]]
localPort = 3001
externalPort = 3002
[[ports]]
localPort = 4200
externalPort = 5000
[[ports]]
localPort = 5000
externalPort = 80
[[ports]]
localPort = 5001
externalPort = 4200
[[ports]]
localPort = 8501
externalPort = 3000
[[ports]]
localPort = 8502
externalPort = 3001