File size: 731 Bytes
e397c42 8c49e5c e397c42 | 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 | 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"
packages = ["zip"]
[deployment]
run = ["node", "index.js"]
deploymentTarget = "autoscale"
ignorePorts = false
[workflows]
runButton = "Run"
[[workflows.workflow]]
name = "Run"
author = 35493899
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "node sw.js && node zip.js && npm i && npm start"
[[ports]]
localPort = 3000
externalPort = 80
[[ports]]
localPort = 3001
externalPort = 3001
[[ports]]
localPort = 3002
externalPort = 3002
[[ports]]
localPort = 7860
externalPort = 3000
|