forked from darshitachaurasia/TrackedIn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.replit
More file actions
38 lines (29 loc) Β· 698 Bytes
/
.replit
File metadata and controls
38 lines (29 loc) Β· 698 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
modules = ["nodejs-20", "web"]
[nix]
channel = "stable-24_05"
[workflows]
runButton = "Run Full App"
[[workflows.workflow]]
name = "Start Backend"
author = 42773143
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd backend && npm run dev"
[[workflows.workflow]]
name = "Start Frontend"
author = 42773143
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd frontend && npm run dev"
[[workflows.workflow]]
name = "Run Full App"
author = 42773143
mode = "parallel"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd backend && npm run dev"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd frontend && npm run dev"