-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.replit
More file actions
47 lines (36 loc) · 887 Bytes
/
.replit
File metadata and controls
47 lines (36 loc) · 887 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
39
40
41
42
43
44
45
46
47
modules = ["java-graalvm22.3", "nodejs-20"]
[agent]
expertMode = true
[workflows]
runButton = "Project"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Frontend Dev Server"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Backend API"
[[workflows.workflow]]
name = "Frontend Dev Server"
author = "agent"
[workflows.workflow.metadata]
outputType = "webview"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd /home/runner/workspace/frontend && npm run dev"
waitForPort = 5000
[[workflows.workflow]]
name = "Backend API"
author = "agent"
[workflows.workflow.metadata]
outputType = "console"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd /home/runner/workspace/backend && mvn spring-boot:run -q"
waitForPort = 8080
[[ports]]
localPort = 5000
externalPort = 80