-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathreplit.
More file actions
61 lines (47 loc) · 1.25 KB
/
replit.
File metadata and controls
61 lines (47 loc) · 1.25 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
entrypoint = "index.js"
modules = ["nodejs-22"]
hidden = [".config", "package-lock.json"]
[gitHubImport]
requiredFiles = [".replit", "replit.nix", "package.json", "package-lock.json"]
[nix]
channel = "stable-24_11"
[deployment]
run = ["bash", "setup_replit_pimeta.sh"]
deploymentTarget = "autoscale"
ignorePorts = false
[workflows]
runButton = "Full Stack"
[[workflows.workflow]]
name = "Frontend"
author = 41474362
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd PiMetaConnect/client && npm start"
[[workflows.workflow]]
name = "Backend"
author = 41474362
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd PiMetaConnect/server && npm start"
[[workflows.workflow]]
name = "Blockchain"
author = 41474362
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd PiMetaConnect/blockchain && npx hardhat node"
[[workflows.workflow]]
name = "Full Stack"
author = 41474362
mode = "parallel"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd PiMetaConnect/client && npm start"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd PiMetaConnect/server && npm start"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd PiMetaConnect/blockchain && npx hardhat node"